aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/events/default/default-events.cpp11
-rw-r--r--common/events.h4
2 files changed, 4 insertions, 11 deletions
diff --git a/backends/events/default/default-events.cpp b/backends/events/default/default-events.cpp
index 4805321ac3..7e9d8db66e 100644
--- a/backends/events/default/default-events.cpp
+++ b/backends/events/default/default-events.cpp
@@ -219,9 +219,6 @@ DefaultEventManager::~DefaultEventManager() {
g_system->unlockMutex(_timeMutex);
g_system->unlockMutex(_recorderMutex);
- if (!artificialEventQueue.empty())
- artificialEventQueue.clear();
-
if (_playbackFile != NULL) {
delete _playbackFile;
}
@@ -383,8 +380,8 @@ bool DefaultEventManager::pollEvent(Common::Event &event) {
uint32 time = g_system->getMillis();
bool result;
- if (!artificialEventQueue.empty()) {
- event = artificialEventQueue.pop();
+ if (!_artificialEventQueue.empty()) {
+ event = _artificialEventQueue.pop();
result = true;
} else {
result = _boss->pollEvent(event);
@@ -602,9 +599,9 @@ void DefaultEventManager::pushEvent(const Common::Event &event) {
// If already received an EVENT_QUIT, don't add another one
if (event.type == Common::EVENT_QUIT) {
if (!_shouldQuit)
- artificialEventQueue.push(event);
+ _artificialEventQueue.push(event);
} else
- artificialEventQueue.push(event);
+ _artificialEventQueue.push(event);
}
#endif // !defined(DISABLE_DEFAULT_EVENTMANAGER)
diff --git a/common/events.h b/common/events.h
index 54c9f6df22..684b87bc5f 100644
--- a/common/events.h
+++ b/common/events.h
@@ -353,10 +353,6 @@ public:
#ifdef ENABLE_KEYMAPPER
virtual Common::Keymapper *getKeymapper() = 0;
#endif
-
-protected:
-
- Common::Queue<Common::Event> artificialEventQueue;
};
} // End of namespace Common