diff options
Diffstat (limited to 'pokemod/Debug.cpp')
| -rw-r--r-- | pokemod/Debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemod/Debug.cpp b/pokemod/Debug.cpp index e3c929d4..cb2e4bff 100644 --- a/pokemod/Debug.cpp +++ b/pokemod/Debug.cpp @@ -36,7 +36,7 @@ void PokeGen::PokeMod::Log(const char *msg, int level) // Actual strings of the debugging levels
const char *PokeModDebugStr[8] = {"Emergency", "Alert", "Critical Error", "Error", "Warning", "Notice", "Info", "Debug"};
// Only log if wanted
- if (level <= PMdebugLevel)
+ if (level <= PokModDebugLevel)
{
// Get the current time
char path[21];
|
