Skip to content

Commit

Permalink
COMMON: Add debug channel for Ogre
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Mar 21, 2014
1 parent 791ecbc commit b21f255
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/common/debugman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ DebugManager::DebugManager() : _debugLevel(0), _logFileStartLine(false) {
addDebugChannel(kDebugSound , "GSound" , "Global sound debug channel");
addDebugChannel(kDebugEvents , "GEvents" , "Global events debug channel");
addDebugChannel(kDebugScripts , "GScripts" , "Global scripts debug channel");
addDebugChannel(kDebugOgre , "GOgre" , "Global Ogre debug channel");
}

DebugManager::~DebugManager() {
Expand Down
2 changes: 1 addition & 1 deletion src/common/debugman.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ enum DebugChannels {
kDebugSound = 1 << 1,
kDebugEvents = 1 << 2,
kDebugScripts = 1 << 3,
kDebugReserved04 = 1 << 4,
kDebugOgre = 1 << 4,
kDebugReserved05 = 1 << 5,
kDebugReserved06 = 1 << 6,
kDebugReserved07 = 1 << 7,
Expand Down

0 comments on commit b21f255

Please sign in to comment.