aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-11-02 01:22:57 +0100
committerWillem Jan Palenstijn2011-11-02 01:23:02 +0100
commita784aeb1874104810b7b06297c32723eda96df62 (patch)
tree9460494e8e2560def92f4f0d2d45f74027c1e614 /backends
parent4e2cc6d50af3ad7ef9c7cc74dd58496f670bee66 (diff)
downloadscummvm-rg350-a784aeb1874104810b7b06297c32723eda96df62.tar.gz
scummvm-rg350-a784aeb1874104810b7b06297c32723eda96df62.tar.bz2
scummvm-rg350-a784aeb1874104810b7b06297c32723eda96df62.zip
BADA: Fix loop
Diffstat (limited to 'backends')
-rwxr-xr-xbackends/timer/bada/timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/timer/bada/timer.cpp b/backends/timer/bada/timer.cpp
index 8f5620401f..faddacb3c3 100755
--- a/backends/timer/bada/timer.cpp
+++ b/backends/timer/bada/timer.cpp
@@ -76,7 +76,7 @@ BadaTimerManager::BadaTimerManager() {
BadaTimerManager::~BadaTimerManager() {
for (Common::List<TimerSlot>::iterator slot = _timers.begin();
- slot != _timers.end(); ++slot) {
+ slot != _timers.end(); ) {
slot->Stop();
slot = _timers.erase(slot);
}