aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-10-26 17:50:45 +0000
committerTorbjörn Andersson2003-10-26 17:50:45 +0000
commitb2ea1994bbed76143df1a7669faed946a9d5645c (patch)
tree9502c81f8ef0ce0c8c832eb439c23de7c2d00233 /scumm/debugger.h
parent4b52223eb85dd8de44871869e88b3ed9af83ca9c (diff)
downloadscummvm-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
Diffstat (limited to 'scumm/debugger.h')
-rw-r--r--scumm/debugger.h2
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