[Scummvm-git-logs] scummvm master -> 3c456852fa4e58884637e3209e67e45697476ae6

tnm23 noreply at scummvm.org
Thu May 14 14:33:32 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:
3c456852fa ZVISION: Amend bugfix #16477.


Commit: 3c456852fa4e58884637e3209e67e45697476ae6
    https://github.com/scummvm/scummvm/commit/3c456852fa4e58884637e3209e67e45697476ae6
Author: Thomas N McEwan (46427621+tnm23 at users.noreply.github.com)
Date: 2026-05-14T15:32:34+01:00

Commit Message:
ZVISION: Amend bugfix #16477.
Workaround need not be applied unless in widescreen mode.

Changed paths:
    engines/zvision/scripting/menu.cpp


diff --git a/engines/zvision/scripting/menu.cpp b/engines/zvision/scripting/menu.cpp
index e45487a2732..ac19265a1f9 100644
--- a/engines/zvision/scripting/menu.cpp
+++ b/engines/zvision/scripting/menu.cpp
@@ -283,7 +283,7 @@ MenuZGI::~MenuZGI() {
 bool MenuZGI::inMenu(const Common::Point &pos) const {
 	const Common::Point TopButtonOrigin(457,0);
 	const Common::Rect TopButtonArea(TopButtonOrigin,40,57);
-	if (_engine->getScriptManager()->getCurrentLocation() == "gjcr") {
+	if (_engine->getScriptManager()->getCurrentLocation() == "gjcr" && ConfMan.getBool("widescreen")) {
 		// WORKAROUND to stop normal menu hotspot from blocking topmost button in ZGI credits screen
 		if(TopButtonArea.contains(pos))
 			return false;




More information about the Scummvm-git-logs mailing list