[Scummvm-git-logs] scummvm master -> 5ecc152f68001a84e290b2c9cc511af4b5f04167
lephilousophe
noreply at scummvm.org
Mon Oct 7 07:14:46 UTC 2024
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:
5ecc152f68 M4: Fix int32 discrepancy
Commit: 5ecc152f68001a84e290b2c9cc511af4b5f04167
https://github.com/scummvm/scummvm/commit/5ecc152f68001a84e290b2c9cc511af4b5f04167
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-10-07T09:14:21+02:00
Commit Message:
M4: Fix int32 discrepancy
Changed paths:
engines/m4/riddle/rooms/section9/room996.cpp
diff --git a/engines/m4/riddle/rooms/section9/room996.cpp b/engines/m4/riddle/rooms/section9/room996.cpp
index 9a5900146a3..4317f5bef58 100644
--- a/engines/m4/riddle/rooms/section9/room996.cpp
+++ b/engines/m4/riddle/rooms/section9/room996.cpp
@@ -135,7 +135,7 @@ void Room996::pre_parser() {
--_flagArray[12];
}
- _flagArray[12] = CLIP(_flagArray[12], 1, 5);
+ _flagArray[12] = CLIP(_flagArray[12], (int32)1, (int32)5);
_G(player).need_to_walk = false;
_G(player).ready_to_walk = true;
More information about the Scummvm-git-logs
mailing list