[Scummvm-git-logs] scummvm master -> 9495bc24f39eea24f7d438318e4f9d3f4b68aab5

bluegr noreply at scummvm.org
Fri Apr 17 23:16:41 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:
9495bc24f3 AGOS: Fix window height for Amiga PN intro


Commit: 9495bc24f39eea24f7d438318e4f9d3f4b68aab5
    https://github.com/scummvm/scummvm/commit/9495bc24f39eea24f7d438318e4f9d3f4b68aab5
Author: Robert Megone (robert.megone at gmail.com)
Date: 2026-04-18T02:16:36+03:00

Commit Message:
AGOS: Fix window height for Amiga PN intro

Changed paths:
    engines/agos/pn.cpp


diff --git a/engines/agos/pn.cpp b/engines/agos/pn.cpp
index 62988db18d9..12808c2a64e 100644
--- a/engines/agos/pn.cpp
+++ b/engines/agos/pn.cpp
@@ -171,6 +171,9 @@ void AGOSEngine_PN::demoSeq() {
 }
 
 void AGOSEngine_PN::introSeq() {
+	if (isPnAmiga())
+		_videoWindows[15] = 200;
+
 	loadZone(25); // Zone 'I'
 	setWindowImage(3, 0);
 
@@ -191,6 +194,9 @@ void AGOSEngine_PN::introSeq() {
 		processSpecialKeys();
 		delay(1);
 	}
+
+	if (isPnAmiga())
+		_videoWindows[15] = 240;
 }
 
 void AGOSEngine_PN::setupBoxes() {




More information about the Scummvm-git-logs mailing list