From 621d0f09fafba69aa650bc1555927f41e9c8e60e Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 3 May 2007 22:21:05 +0000 Subject: Update PokeMod to PokeGen::PokeMod git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@6 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/Debug.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pokemod/Debug.cpp') diff --git a/pokemod/Debug.cpp b/pokemod/Debug.cpp index 9790ea20..d160fd2b 100644 --- a/pokemod/Debug.cpp +++ b/pokemod/Debug.cpp @@ -1,10 +1,10 @@ ///////////////////////////////////////////////////////////////////////////// // Name: Debug.cpp -// Purpose: Define logging abilities for a PokéMod +// Purpose: Define logging abilities for a PokĂ©Mod // Author: Ben Boeckel // Modified by: Ben Boeckel // Created: Wed Feb 14 23:44:39 2007 -// Copyright: ©2007 Ben Boeckel and Nerdy Productions +// Copyright: ©2007 Ben Boeckel and Nerdy Productions // Licence: // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -32,7 +32,7 @@ debugWindow debug = new debugWindow(); extern int PMdebugLevel; -void PokeMod::Log(const char *msg, int level) +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"}; @@ -79,7 +79,7 @@ void PokeMod::Log(const char *msg, int level) #else // Empty function if debugging isn't wanted -void PokeMod::Log(const PokeMod::String &msg, int level) +void PokeGen::PokeMod::Log(const PokeGen::PokeMod::String &msg, int level) { return; } -- cgit