aboutsummaryrefslogtreecommitdiff
path: root/common/system.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-07-28 23:05:30 +0300
committerGitHub2016-07-28 23:05:30 +0300
commitd8e7d3cc355827a0a7dc3de4e77fade1ec13a10c (patch)
tree7d1bf6d6a59d6eec7809796a174afaae8304cb6a /common/system.cpp
parent823c2f899b480a1fa494b08e1471142129293779 (diff)
parentf980ef5524897eac047f0d794af3971c7c71a6a3 (diff)
downloadscummvm-rg350-d8e7d3cc355827a0a7dc3de4e77fade1ec13a10c.tar.gz
scummvm-rg350-d8e7d3cc355827a0a7dc3de4e77fade1ec13a10c.tar.bz2
scummvm-rg350-d8e7d3cc355827a0a7dc3de4e77fade1ec13a10c.zip
Merge pull request #794 from bgK/fix-tests-event-recorder
COMMON: Fix tests when building with the event recorder
Diffstat (limited to 'common/system.cpp')
-rw-r--r--common/system.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/common/system.cpp b/common/system.cpp
index 53f28cafa1..131a7d2580 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -30,9 +30,6 @@
#include "common/taskbar.h"
#include "common/updates.h"
#include "common/textconsole.h"
-#ifdef ENABLE_EVENTRECORDER
-#include "gui/EventRecorder.h"
-#endif
#include "backends/audiocd/default/default-audiocd.h"
#include "backends/fs/fs-factory.h"
@@ -161,9 +158,5 @@ Common::TimerManager *OSystem::getTimerManager() {
}
Common::SaveFileManager *OSystem::getSavefileManager() {
-#ifdef ENABLE_EVENTRECORDER
- return g_eventRec.getSaveManager(_savefileManager);
-#else
return _savefileManager;
-#endif
}