diff options
author | Willem Jan Palenstijn | 2014-05-25 12:29:13 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2014-05-25 12:29:13 +0200 |
commit | 6cf5cb939b8452bb924946529d955469e73a7a0c (patch) | |
tree | b00544c6beb8035405bbbfdbc422eb34cba7b91b | |
parent | 99b376afe73ed84d9229265bb8924d89fb993b5e (diff) | |
download | scummvm-rg350-6cf5cb939b8452bb924946529d955469e73a7a0c.tar.gz scummvm-rg350-6cf5cb939b8452bb924946529d955469e73a7a0c.tar.bz2 scummvm-rg350-6cf5cb939b8452bb924946529d955469e73a7a0c.zip |
GUI: Fix compilation
This adds a missing header in the case #ifndef USE_TEXT_CONSOLE_FOR_DEBUGGER
-rw-r--r-- | gui/debugger.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp index 3cfa9f9803..d14b786e33 100644 --- a/gui/debugger.cpp +++ b/gui/debugger.cpp @@ -23,6 +23,7 @@ // NB: This is really only necessary if USE_READLINE is defined #define FORBIDDEN_SYMBOL_ALLOW_ALL +#include "common/debug.h" #include "common/debug-channels.h" #include "common/system.h" |