diff options
author | Matthew Hoops | 2013-07-06 23:54:45 -0400 |
---|---|---|
committer | Matthew Hoops | 2013-07-06 23:54:45 -0400 |
commit | 4a7e4e5b22da3587a9d68978d7be31e4e78a8ccc (patch) | |
tree | 99da5697f89e53aef119dc1e49d2df9a96c0eae9 /gui/EventRecorder.cpp | |
parent | bd82ca97c228edb1f526a8a88a9f370daab8de95 (diff) | |
download | scummvm-rg350-4a7e4e5b22da3587a9d68978d7be31e4e78a8ccc.tar.gz scummvm-rg350-4a7e4e5b22da3587a9d68978d7be31e4e78a8ccc.tar.bz2 scummvm-rg350-4a7e4e5b22da3587a9d68978d7be31e4e78a8ccc.zip |
ALL: Don't use EventRecorder at all when not compiled in
Diffstat (limited to 'gui/EventRecorder.cpp')
-rw-r--r-- | gui/EventRecorder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/EventRecorder.cpp b/gui/EventRecorder.cpp index 47358a0b3d..d8cb0b8830 100644 --- a/gui/EventRecorder.cpp +++ b/gui/EventRecorder.cpp @@ -23,12 +23,12 @@ #include "gui/EventRecorder.h" +#ifdef ENABLE_EVENTRECORDER + namespace Common { DECLARE_SINGLETON(GUI::EventRecorder); } -#ifdef ENABLE_EVENTRECORDER - #include "common/debug-channels.h" #include "backends/timer/sdl/sdl-timer.h" #include "backends/mixer/sdl/sdl-mixer.h" |