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

Strangerke noreply at scummvm.org
Mon Jan 26 08:37:33 UTC 2026


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
6dc6d00a95 M4: BURGER: Enable Borg sounds 10 to 13
a794fe3afc M4: BURGER: Fix unlisted bug during language test: xmas lights not displayed on roof properly


Commit: 6dc6d00a95b479dbcfb1f530b7e29cde54522f01
    https://github.com/scummvm/scummvm/commit/6dc6d00a95b479dbcfb1f530b7e29cde54522f01
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2026-01-26T09:36:12+01:00

Commit Message:
M4: BURGER: Enable Borg sounds 10 to 13

Changed paths:
    engines/m4/burger/rooms/section5/section5.cpp


diff --git a/engines/m4/burger/rooms/section5/section5.cpp b/engines/m4/burger/rooms/section5/section5.cpp
index 1d0c4a6421f..677be80f783 100644
--- a/engines/m4/burger/rooms/section5/section5.cpp
+++ b/engines/m4/burger/rooms/section5/section5.cpp
@@ -374,9 +374,9 @@ void Section5::daemon() {
 		}
 
 		if (!digi_play_state(1) && !digi_play_state(2)) {
-			// FIXME: The original does a random of 1 to 9, but the switch has 1 to 13.
-			// Check if extra cases are valid, and if so, re-enable them
-			switch (imath_ranged_rand(1, 9)) {
+			// The original did a random of 1 to 9, but the switch had 1 to 13.
+			// The extra cases are valid with unused sounds, so we re-enabled them
+			switch (imath_ranged_rand(1, 13)) {
 			case 1:
 				_bgDigiName = "500_015";
 				break;


Commit: a794fe3afcfcf32fc72bcd5920c1e73e65c307c5
    https://github.com/scummvm/scummvm/commit/a794fe3afcfcf32fc72bcd5920c1e73e65c307c5
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2026-01-26T09:37:27+01:00

Commit Message:
M4: BURGER: Fix unlisted bug during language test: xmas lights not displayed on roof properly

Changed paths:
    engines/m4/burger/rooms/section5/room508.cpp


diff --git a/engines/m4/burger/rooms/section5/room508.cpp b/engines/m4/burger/rooms/section5/room508.cpp
index 8b49e26f044..3ee55e40f91 100644
--- a/engines/m4/burger/rooms/section5/room508.cpp
+++ b/engines/m4/burger/rooms/section5/room508.cpp
@@ -202,7 +202,7 @@ void Room508::init() {
 		kernel_trigger_dispatch_now(5);
 	} else {
 		_val4 = 22;
-		kernel_trigger_dispatch_now(22);
+		kernel_trigger_dispatch_now(5);
 	}
 
 	if (_G(flags)[V228] == 1) {




More information about the Scummvm-git-logs mailing list