diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-09 23:25:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-09 23:25:54 +0300 |
commit | f0c21ce1cad60cbbaefda93f9f298fb6761392a4 (patch) | |
tree | dfffff35ece4684655c5f8368d55f4be699ebf4e | |
parent | 4561ae35f7c2c641e5dd0070b6cd3779dad0275b (diff) | |
download | plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.tar.gz plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.tar.bz2 plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.tar.xz plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.zip |
Fix code style.
-rw-r--r-- | src/commandhandler.cpp | 6 | ||||
-rw-r--r-- | src/map.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index a20944ff2..41b901997 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -1082,7 +1082,9 @@ void CommandHandler::handleCacheInfo(const std::string &args _UNUSED_, debugChatTab->chatLog(strprintf("%s %d", _("Cache size:"), all)); #ifdef DEBUG_FONT_COUNTERS debugChatTab->chatLog(""); - debugChatTab->chatLog(strprintf("%s %d", _("Created:"), font->getCreateCounter())); - debugChatTab->chatLog(strprintf("%s %d", _("Deleted:"), font->getDeleteCounter())); + debugChatTab->chatLog(strprintf("%s %d", + _("Created:"), font->getCreateCounter())); + debugChatTab->chatLog(strprintf("%s %d", + _("Deleted:"), font->getDeleteCounter())); #endif } @@ -230,7 +230,7 @@ class Map : public Properties, public ConfigListener BLOCKMASK_CHARACTER = 0x01, // 0000 0001 BLOCKMASK_MONSTER = 0x02, // 0000 0010 BLOCKMASK_AIR = 0x04, // 0000 0100 - BLOCKMASK_WATER = 0x08, // 0000 1000 + BLOCKMASK_WATER = 0x08 // 0000 1000 }; enum DebugType |