[Scummvm-git-logs] scummvm master -> f2567757853e8b6da8e461fa6333fee297b208bf
dreammaster
noreply at scummvm.org
Mon Jun 29 20:54:45 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:
f256775785 MADS: FOREST: Fix flags comparison in inter_update_series
Commit: f2567757853e8b6da8e461fa6333fee297b208bf
https://github.com/scummvm/scummvm/commit/f2567757853e8b6da8e461fa6333fee297b208bf
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-06-30T06:54:38+10:00
Commit Message:
MADS: FOREST: Fix flags comparison in inter_update_series
Changed paths:
engines/mads/madsv2/forest/extra.cpp
diff --git a/engines/mads/madsv2/forest/extra.cpp b/engines/mads/madsv2/forest/extra.cpp
index fb50d11d874..65fa516d553 100644
--- a/engines/mads/madsv2/forest/extra.cpp
+++ b/engines/mads/madsv2/forest/extra.cpp
@@ -171,7 +171,7 @@ void inter_update_series(int series_id) {
if (ii.series_id == series_id)
ii.flags = IMAGE_ERASE;
- else if (ii.series_id != IMAGE_ERASE)
+ else if (ii.flags != IMAGE_ERASE)
ii.flags = IMAGE_UPDATE;
}
}
More information about the Scummvm-git-logs
mailing list