aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2012-07-03 17:53:00 +0200
committerJohannes Schickel2012-07-03 17:58:33 +0200
commit2678bcda981d7772beece5eaae3293e3e0f1c2a8 (patch)
tree8325dd5005292d4b260bd0cf2864425f296e57ab
parentb2ba37a039715e64dba8b534cc23d72624469f34 (diff)
downloadscummvm-rg350-2678bcda981d7772beece5eaae3293e3e0f1c2a8.tar.gz
scummvm-rg350-2678bcda981d7772beece5eaae3293e3e0f1c2a8.tar.bz2
scummvm-rg350-2678bcda981d7772beece5eaae3293e3e0f1c2a8.zip
BACKENDS: Remove unused member in DefaultTimerManager.
Thanks to salty-horse for pointing this out.
-rw-r--r--backends/timer/default/default-timer.cpp1
-rw-r--r--backends/timer/default/default-timer.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/backends/timer/default/default-timer.cpp b/backends/timer/default/default-timer.cpp
index 8681102cd0..9cd803f148 100644
--- a/backends/timer/default/default-timer.cpp
+++ b/backends/timer/default/default-timer.cpp
@@ -59,7 +59,6 @@ void insertPrioQueue(TimerSlot *head, TimerSlot *newSlot) {
DefaultTimerManager::DefaultTimerManager() :
- _timerHandler(0),
_head(0) {
_head = new TimerSlot();
diff --git a/backends/timer/default/default-timer.h b/backends/timer/default/default-timer.h
index e5a9dada79..5884979da0 100644
--- a/backends/timer/default/default-timer.h
+++ b/backends/timer/default/default-timer.h
@@ -34,7 +34,6 @@ private:
typedef Common::HashMap<Common::String, TimerProc, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> TimerSlotMap;
Common::Mutex _mutex;
- void *_timerHandler;
TimerSlot *_head;
TimerSlotMap _callbacks;