[Scummvm-git-logs] scummvm master -> b4b12ecf0a23edd483877c630829e5b854dde5c4
dreammaster
noreply at scummvm.org
Fri Apr 24 06:31:55 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:
b4b12ecf0a MADS: PHANTOM: Fix flags in popup_savelist_mouse function
Commit: b4b12ecf0a23edd483877c630829e5b854dde5c4
https://github.com/scummvm/scummvm/commit/b4b12ecf0a23edd483877c630829e5b854dde5c4
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-04-24T16:31:41+10:00
Commit Message:
MADS: PHANTOM: Fix flags in popup_savelist_mouse function
Changed paths:
engines/mads/madsv2/core/popup.cpp
diff --git a/engines/mads/madsv2/core/popup.cpp b/engines/mads/madsv2/core/popup.cpp
index beddf154e05..e111f6c4668 100644
--- a/engines/mads/madsv2/core/popup.cpp
+++ b/engines/mads/madsv2/core/popup.cpp
@@ -2662,7 +2662,6 @@ static int popup_savelist_mouse(PopupItem *item) {
bool in_up_arrow;
bool in_down_arrow;
bool in_main_box;
- bool in_main_range;
int update_sign;
int force_update;
int old_status;
@@ -2742,7 +2741,7 @@ static int popup_savelist_mouse(PopupItem *item) {
}
} else {
- if (in_main_range) {
+ if (in_main_box) {
y = mouse_y - (item->y + 2);
relative = y / list->list_ys;
if (relative < 0) relative = 0;
More information about the Scummvm-git-logs
mailing list