aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus
diff options
context:
space:
mode:
authorMatthew Hoops2014-04-20 12:55:52 -0400
committerMatthew Hoops2014-04-20 12:55:52 -0400
commit850ddc14627c910c53111b57e30d2e044841e046 (patch)
tree869158017554a9ec181fde66d2abec3a8a1844e0 /engines/pegasus
parente76a89048159ff20e59358706f43885a9786723c (diff)
downloadscummvm-rg350-850ddc14627c910c53111b57e30d2e044841e046.tar.gz
scummvm-rg350-850ddc14627c910c53111b57e30d2e044841e046.tar.bz2
scummvm-rg350-850ddc14627c910c53111b57e30d2e044841e046.zip
PEGASUS: Fix disabling input when the rip first hits
Diffstat (limited to 'engines/pegasus')
-rw-r--r--engines/pegasus/neighborhood/tsa/fulltsa.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/pegasus/neighborhood/tsa/fulltsa.cpp b/engines/pegasus/neighborhood/tsa/fulltsa.cpp
index c0fa3c4fe6..92b79c038e 100644
--- a/engines/pegasus/neighborhood/tsa/fulltsa.cpp
+++ b/engines/pegasus/neighborhood/tsa/fulltsa.cpp
@@ -1692,7 +1692,9 @@ void FullTSA::initializeTBPMonitor(const int newMode, const ExtraID highlightExt
releaseSprites();
}
- _interruptionFilter = kFilterAllInput;
+ // Only allow input if we're not in the middle of series of queue requests.
+ if (actionQueueEmpty())
+ _interruptionFilter = kFilterAllInput;
}
void FullTSA::startUpComparisonMonitor() {