aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_rpg.cpp
diff options
context:
space:
mode:
authorathrxx2012-01-03 21:30:45 +0100
committerunknown2012-01-06 14:44:34 +0100
commit6e45741b17ec17ec1c2081557df043d5d4f2ff73 (patch)
treeff5721b2f21f6d932a08641c8e645f2caee477dc /engines/kyra/kyra_rpg.cpp
parent43e2fde7a951d362ab06f20bc043698f0e1e47c3 (diff)
downloadscummvm-rg350-6e45741b17ec17ec1c2081557df043d5d4f2ff73.tar.gz
scummvm-rg350-6e45741b17ec17ec1c2081557df043d5d4f2ff73.tar.bz2
scummvm-rg350-6e45741b17ec17ec1c2081557df043d5d4f2ff73.zip
KYRA: (EOB) - cleanup eob/lol version of delayUntil()
Diffstat (limited to 'engines/kyra/kyra_rpg.cpp')
-rw-r--r--engines/kyra/kyra_rpg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/kyra_rpg.cpp b/engines/kyra/kyra_rpg.cpp
index 4487290bf9..b8d56b3ecb 100644
--- a/engines/kyra/kyra_rpg.cpp
+++ b/engines/kyra/kyra_rpg.cpp
@@ -308,7 +308,7 @@ uint16 KyraRpgEngine::processDialogue() {
return res;
}
-void KyraRpgEngine::delayUntil(uint32 time, bool doUpdate, bool isMainLoop, bool) {
+void KyraRpgEngine::delayUntil(uint32 time, bool, bool doUpdate, bool isMainLoop) {
uint32 curTime = _system->getMillis();
if (time > curTime)
delay(time - curTime, doUpdate, isMainLoop);