diff options
author | Torbjörn Andersson | 2003-10-26 17:50:45 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-10-26 17:50:45 +0000 |
commit | b2ea1994bbed76143df1a7669faed946a9d5645c (patch) | |
tree | 9502c81f8ef0ce0c8c832eb439c23de7c2d00233 | |
parent | 4b52223eb85dd8de44871869e88b3ed9af83ca9c (diff) | |
download | scummvm-rg350-b2ea1994bbed76143df1a7669faed946a9d5645c.tar.gz scummvm-rg350-b2ea1994bbed76143df1a7669faed946a9d5645c.tar.bz2 scummvm-rg350-b2ea1994bbed76143df1a7669faed946a9d5645c.zip |
Use #if USE_CONSOLE instead of #ifdef USE_CONSOLE since that's how we do
everywhere else
svn-id: r10981
-rw-r--r-- | scumm/debugger.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/debugger.h b/scumm/debugger.h index 4a4cbc5517..208871c058 100644 --- a/scumm/debugger.h +++ b/scumm/debugger.h @@ -104,7 +104,7 @@ protected: void printBox(int box); void drawBox(int box); -#ifdef USE_CONSOLE +#if USE_CONSOLE static bool debuggerInputCallback(ConsoleDialog *console, const char *input, void *refCon); static bool debuggerCompletionCallback(ConsoleDialog *console, const char *input, char*& completion, void *refCon); #endif |