diff options
author | Matthew Hoops | 2014-04-20 12:55:52 -0400 |
---|---|---|
committer | Matthew Hoops | 2014-04-20 12:55:52 -0400 |
commit | 850ddc14627c910c53111b57e30d2e044841e046 (patch) | |
tree | 869158017554a9ec181fde66d2abec3a8a1844e0 | |
parent | e76a89048159ff20e59358706f43885a9786723c (diff) | |
download | scummvm-rg350-850ddc14627c910c53111b57e30d2e044841e046.tar.gz scummvm-rg350-850ddc14627c910c53111b57e30d2e044841e046.tar.bz2 scummvm-rg350-850ddc14627c910c53111b57e30d2e044841e046.zip |
PEGASUS: Fix disabling input when the rip first hits
-rw-r--r-- | engines/pegasus/neighborhood/tsa/fulltsa.cpp | 4 |
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() { |