[Scummvm-git-logs] scummvm master -> efd38a4a8567b5123e02d7204d72b257c585c28f

antoniou79 noreply at scummvm.org
Thu Nov 27 11:45:14 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:
efd38a4a85 TSAGE: Disable "?" UI element when showing verb popup dialogue


Commit: efd38a4a8567b5123e02d7204d72b257c585c28f
    https://github.com/scummvm/scummvm/commit/efd38a4a8567b5123e02d7204d72b257c585c28f
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2025-11-27T13:41:37+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