[Scummvm-git-logs] scummvm branch-3-0 -> 7a3a0c64efd11c196cc320c1bbbb14c93a4da104
antoniou79
noreply at scummvm.org
Thu Nov 27 11:46:17 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
7a3a0c64ef TSAGE: Disable "?" UI element when showing verb popup dialogue
Commit: 7a3a0c64efd11c196cc320c1bbbb14c93a4da104
https://github.com/scummvm/scummvm/commit/7a3a0c64efd11c196cc320c1bbbb14c93a4da104
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2025-11-27T13:46:10+02:00
Commit Message:
TSAGE: Disable "?" UI element when showing verb popup dialogue
This emulates the original behavior
Changed paths:
engines/tsage/core.cpp
diff --git a/engines/tsage/core.cpp b/engines/tsage/core.cpp
index 147dbf3a875..61a4d9f3137 100644
--- a/engines/tsage/core.cpp
+++ b/engines/tsage/core.cpp
@@ -4490,6 +4490,8 @@ void SceneHandler::process(Event &event) {
g_globals->_player._uiEnabled &&
((g_vm->getGameID() != GType_Ringworld2) || (R2_GLOBALS._sceneManager._sceneNumber != 1330)) &&
((g_vm->getGameID() != GType_BlueForce) || (R2_GLOBALS._sceneManager._sceneNumber != 100))) {
+ // Disable the "?" UI element when showing the right-click popup menu
+ T2_GLOBALS._uiElements._question.setEnabled(false);
g_globals->_game->rightClick();
event.handled = true;
More information about the Scummvm-git-logs
mailing list