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

Strangerke noreply at scummvm.org
Tue Feb 18 06:44:19 UTC 2025


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

Summary:
aa09763924 M4: Burger: Fix CID 1532973


Commit: aa0976392469b4e053ad645e3d5d15b00b0d193e
    https://github.com/scummvm/scummvm/commit/aa0976392469b4e053ad645e3d5d15b00b0d193e
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-02-18T07:41:55+01:00

Commit Message:
M4: Burger: Fix CID 1532973

Changed paths:
    engines/m4/burger/rooms/section3/mine.h


diff --git a/engines/m4/burger/rooms/section3/mine.h b/engines/m4/burger/rooms/section3/mine.h
index 0a9df9fdd8f..f446209e76e 100644
--- a/engines/m4/burger/rooms/section3/mine.h
+++ b/engines/m4/burger/rooms/section3/mine.h
@@ -72,10 +72,10 @@ struct EntranceInfo {
 };
 
 struct Rectangle {
-	int16 x1;
-	int16 y1;
-	int16 x2;
-	int16 y2;
+	int16 x1 = 0;
+	int16 y1 = 0;
+	int16 x2 = 0;
+	int16 y2 = 0;
 };
 
 class Mine : public Section3Room {




More information about the Scummvm-git-logs mailing list