diff options
Diffstat (limited to 'sword2/console.cpp')
| -rw-r--r-- | sword2/console.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/sword2/console.cpp b/sword2/console.cpp index 0533cf26d5..2648099bb0 100644 --- a/sword2/console.cpp +++ b/sword2/console.cpp @@ -112,13 +112,13 @@ Debugger::Debugger(Sword2Engine *vm)  }  void Debugger::varGet(int var) { -	Debug_Printf("%d\n", VAR(var)); +	DebugPrintf("%d\n", VAR(var));  }  void Debugger::varSet(int var, int val) { -	Debug_Printf("was %d, ", VAR(var)); +	DebugPrintf("was %d, ", VAR(var));  	VAR(var) = val; -	Debug_Printf("now %d\n", VAR(var)); +	DebugPrintf("now %d\n", VAR(var));  }  void Debugger::preEnter() { | 
