[Scummvm-git-logs] scummvm master -> 92b21b7d72c8176554c4dfbcf258ba0151adf1f0
antoniou79
noreply at scummvm.org
Sat Feb 7 00:09:58 UTC 2026
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:
92b21b7d72 TSAGE: Fix regression for right-click popup in Ringworld Revenge
Commit: 92b21b7d72c8176554c4dfbcf258ba0151adf1f0
https://github.com/scummvm/scummvm/commit/92b21b7d72c8176554c4dfbcf258ba0151adf1f0
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2026-02-07T02:09:36+02:00
Commit Message:
TSAGE: Fix regression for right-click popup in Ringworld Revenge
Changed paths:
engines/tsage/core.cpp
diff --git a/engines/tsage/core.cpp b/engines/tsage/core.cpp
index 61a4d9f3137..5e8abe41d46 100644
--- a/engines/tsage/core.cpp
+++ b/engines/tsage/core.cpp
@@ -4490,8 +4490,10 @@ 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);
+ if (g_vm->getGameID() != GType_Ringworld) {
+ // 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