[Scummvm-git-logs] scummvm master -> 7866d52d2e60ad74ef58987c8482570a297d21c2

dreammaster noreply at scummvm.org
Sun Aug 16 10:14:24 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:
7866d52d2e MADS: NEBULAR: Fix crash being blown up by underwater mine


Commit: 7866d52d2e60ad74ef58987c8482570a297d21c2
    https://github.com/scummvm/scummvm/commit/7866d52d2e60ad74ef58987c8482570a297d21c2
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-08-16T20:14:11+10:00

Commit Message:
MADS: NEBULAR: Fix crash being blown up by underwater mine

Changed paths:
    engines/mads/core/kernel.cpp


diff --git a/engines/mads/core/kernel.cpp b/engines/mads/core/kernel.cpp
index 35b39d96858..1e602b4d4ff 100644
--- a/engines/mads/core/kernel.cpp
+++ b/engines/mads/core/kernel.cpp
@@ -535,9 +535,6 @@ int kernel_room_startup(int newRoom, int initial_variant, const char *interface,
 	viewing_at_y = 0;
 	inter_viewing_at_y = inter_base_y;
 
-	// Mark the boundary between interface and room sprite series
-	kernel_room_series_marker = series_list_marker;
-
 	if (barebones) {
 		room_spots = nullptr;
 		goto finish;
@@ -572,6 +569,9 @@ int kernel_room_startup(int newRoom, int initial_variant, const char *interface,
 		}
 	}
 
+	// Mark the boundary between interface and room sprite series
+	kernel_room_series_marker = series_list_marker;
+
 	// Set up interface background screen
 	kernel_set_interface_mode(inter_input_mode);
 




More information about the Scummvm-git-logs mailing list