[Scummvm-git-logs] scummvm master -> ccb5cc23775b07995505bdfdd49d658db6e48060
dreammaster
noreply at scummvm.org
Thu Sep 25 11:05:06 UTC 2025
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:
ccb5cc2377 BAGEL: MINIGAMES: Fix drawing maze bottom wall in Maze O Doom
Commit: ccb5cc23775b07995505bdfdd49d658db6e48060
https://github.com/scummvm/scummvm/commit/ccb5cc23775b07995505bdfdd49d658db6e48060
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2025-09-25T04:05:00-07:00
Commit Message:
BAGEL: MINIGAMES: Fix drawing maze bottom wall in Maze O Doom
Changed paths:
engines/bagel/hodjnpodj/mazedoom/mod.cpp
diff --git a/engines/bagel/hodjnpodj/mazedoom/mod.cpp b/engines/bagel/hodjnpodj/mazedoom/mod.cpp
index 16fa48457c0..1f8762a0f56 100644
--- a/engines/bagel/hodjnpodj/mazedoom/mod.cpp
+++ b/engines/bagel/hodjnpodj/mazedoom/mod.cpp
@@ -1258,10 +1258,10 @@ void SetUpMaze() {
(_mazeTile[x][y + 1].m_nWall == PATH && (_mazeTile[x + 1][y - 1].m_nWall == PATH &&
(_mazeTile[x + 1][y].m_nWall == PATH && _mazeTile[x + 1][y + 1].m_nWall == PATH))))))
_mazeTile[x][y].m_nWall = WALL; // If it's two wide horizontally from the left
-
- if (y == NUM_ROWS - 1)
- _mazeTile[x][y].m_nWall = WALL; // Make bottom wall
}
+
+ if (y == NUM_ROWS - 1)
+ _mazeTile[x][y].m_nWall = WALL; // Make bottom wall
}
}
More information about the Scummvm-git-logs
mailing list