BADA: Fix loop

This commit is contained in:
Willem Jan Palenstijn 2011-11-02 01:22:57 +01:00
parent 4e2cc6d50a
commit a784aeb187

View File

@ -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);
}