aboutsummaryrefslogtreecommitdiff
path: root/gui/debugger.h
diff options
context:
space:
mode:
authorMax Horn2011-05-05 17:32:31 +0200
committerMax Horn2011-05-25 13:24:37 +0200
commit4b7f6dfa3c8ca3ee614810007728e49ba2fd9e6e (patch)
tree5887f68106e4b4b5515599260a7670553992ac1f /gui/debugger.h
parent717a7accf5f4c58e4b4b9187ee349841163c3896 (diff)
downloadscummvm-rg350-4b7f6dfa3c8ca3ee614810007728e49ba2fd9e6e.tar.gz
scummvm-rg350-4b7f6dfa3c8ca3ee614810007728e49ba2fd9e6e.tar.bz2
scummvm-rg350-4b7f6dfa3c8ca3ee614810007728e49ba2fd9e6e.zip
BUILD: Rename USE_TEXT_CONSOLE -> USE_TEXT_CONSOLE_FOR_DEBUGGER
This reduces the similarity in name to the otherwise mostly unrelated DISABLE_TEXT_CONSOLE #define.
Diffstat (limited to 'gui/debugger.h')
-rw-r--r--gui/debugger.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/debugger.h b/gui/debugger.h
index c6fce87107..6da569e0f8 100644
--- a/gui/debugger.h
+++ b/gui/debugger.h
@@ -29,7 +29,7 @@
namespace GUI {
-#ifndef USE_TEXT_CONSOLE
+#ifndef USE_TEXT_CONSOLE_FOR_DEBUGGER
class ConsoleDialog;
#endif
@@ -144,7 +144,7 @@ private:
*/
bool _firstTime;
-#ifndef USE_TEXT_CONSOLE
+#ifndef USE_TEXT_CONSOLE_FOR_DEBUGGER
GUI::ConsoleDialog *_debuggerDialog;
#endif
@@ -194,7 +194,7 @@ protected:
bool Cmd_DebugFlagEnable(int argc, const char **argv);
bool Cmd_DebugFlagDisable(int argc, const char **argv);
-#ifndef USE_TEXT_CONSOLE
+#ifndef USE_TEXT_CONSOLE_FOR_DEBUGGER
private:
static bool debuggerInputCallback(GUI::ConsoleDialog *console, const char *input, void *refCon);
static bool debuggerCompletionCallback(GUI::ConsoleDialog *console, const char *input, Common::String &completion, void *refCon);