aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/ai
diff options
context:
space:
mode:
authorMatthew Hoops2011-10-17 09:21:49 -0400
committerMatthew Hoops2011-10-17 09:21:49 -0400
commit1529ed0891b9721c349e84468dcb28d4f655dc1b (patch)
tree15f611ba87376d77066b865601231d04879217c5 /engines/pegasus/ai
parent5c2a89dc4aa005e9b8f74dfe290fdaf4f8f32ad3 (diff)
downloadscummvm-rg350-1529ed0891b9721c349e84468dcb28d4f655dc1b.tar.gz
scummvm-rg350-1529ed0891b9721c349e84468dcb28d4f655dc1b.tar.bz2
scummvm-rg350-1529ed0891b9721c349e84468dcb28d4f655dc1b.zip
PEGASUS: Implement deleting items when inventory is full
Diffstat (limited to 'engines/pegasus/ai')
-rwxr-xr-xengines/pegasus/ai/ai_area.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/pegasus/ai/ai_area.cpp b/engines/pegasus/ai/ai_area.cpp
index 9f297e3df6..923df41cf1 100755
--- a/engines/pegasus/ai/ai_area.cpp
+++ b/engines/pegasus/ai/ai_area.cpp
@@ -222,6 +222,7 @@ void AIArea::playAIAreaSequence(const tLowerClientSignature, const tLowerAreaSig
vm->_cursor->hide();
while (_middleAreaMovie.isRunning()) {
+ vm->checkCallBacks();
vm->refreshDisplay();
g_system->delayMillis(10);
}
@@ -245,6 +246,7 @@ void AIArea::playAIAreaSequence(const tLowerClientSignature, const tLowerAreaSig
vm->_cursor->hide();
while (_rightAreaMovie.isRunning()) {
+ vm->checkCallBacks();
vm->refreshDisplay();
g_system->delayMillis(10);
}