diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2007-05-21 03:04:40 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2007-05-21 03:04:40 +0000 |
| commit | 42375a0129fdd57355764c58ed27fa3a0a3c5465 (patch) | |
| tree | 6d63c5e97c5f44ecf32edaf122c2a31868a31dc3 /pokemod/Debug.cpp | |
| parent | fafbdab97afb5ec6498ea0ab66b693b9e335f6f1 (diff) | |
| download | sigen-42375a0129fdd57355764c58ed27fa3a0a3c5465.tar.gz sigen-42375a0129fdd57355764c58ed27fa3a0a3c5465.tar.xz sigen-42375a0129fdd57355764c58ed27fa3a0a3c5465.zip | |
Various pokemod fixes (added AbilityEffect and Type)
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@10 6ecfd1a5-f3ed-3746-8530-beee90d26b22
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];
|
