[Scummvm-git-logs] scummvm master -> 142924cec494c60d2c674382b303a125cee99b8a

AndywinXp noreply at scummvm.org
Sun Jul 9 18:50:16 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
142924cec4 SCUMM: GUI: Fix some FM-Towns banner not disappearing properly


Commit: 142924cec494c60d2c674382b303a125cee99b8a
    https://github.com/scummvm/scummvm/commit/142924cec494c60d2c674382b303a125cee99b8a
Author: AndywinXp (andywinxp at gmail.com)
Date: 2023-07-09T20:50:09+02:00

Commit Message:
SCUMM: GUI: Fix some FM-Towns banner not disappearing properly

Changed paths:
    engines/scumm/input.cpp


diff --git a/engines/scumm/input.cpp b/engines/scumm/input.cpp
index 3de63aa6c93..48698459fd8 100644
--- a/engines/scumm/input.cpp
+++ b/engines/scumm/input.cpp
@@ -1057,7 +1057,7 @@ void ScummEngine::processKeyboard(Common::KeyState lastKeyHit) {
 				waitForBannerInput(60, ks, leftBtnPressed, rightBtnPressed);
 			} while (ks.ascii == '+' || ks.ascii == '-');
 
-			if (_game.version > 6)
+			if (_game.version > 6 || _game.platform == Common::Platform::kPlatformFMTowns)
 				clearBanner();
 
 			pt.clear();




More information about the Scummvm-git-logs mailing list