From 3595239f08f2bc1df32ef22ed6de9bde10ca3384 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 4 Jun 2007 01:35:20 +0000 Subject: Style cleanup, minor Matrix fixes, duplication validations, Pokemod methods git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@19 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/Debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pokemod/Debug.cpp') diff --git a/pokemod/Debug.cpp b/pokemod/Debug.cpp index 87a9b7e0..389c3138 100644 --- a/pokemod/Debug.cpp +++ b/pokemod/Debug.cpp @@ -31,7 +31,7 @@ extern debugWindow PokeModDebugWindow; int PokeModDebugLevel; -void PokeGen::PokeMod::Log(const char *msg, int level) +void PokeGen::PokeMod::Log(const char *msg, const int level) { // Actual strings of the debugging levels const char *PokeModDebugStr[8] = {"Emergency", "Alert", "Critical Error", "Error", "Warning", "Notice", "Info", "Debug"}; @@ -81,7 +81,7 @@ void PokeGen::PokeMod::Log(const char *msg, int level) #else // Empty function if debugging isn't wanted -void PokeGen::PokeMod::Log(const String &msg, int level) +void PokeGen::PokeMod::Log(const String &msg, const int level) { return; } -- cgit