From 850ddc14627c910c53111b57e30d2e044841e046 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Sun, 20 Apr 2014 12:55:52 -0400 Subject: PEGASUS: Fix disabling input when the rip first hits --- engines/pegasus/neighborhood/tsa/fulltsa.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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() { -- cgit v1.2.3