[Scummvm-git-logs] scummvm master -> 58f8f79224d3c9a0b99dd78fc41f8d69fd6ced89
dreammaster
noreply at scummvm.org
Sun Aug 16 11:38:48 UTC 2026
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b9878636dc MADS: Fix for turning off spinning inventory items
58f8f79224 MADS: NEBULAR: Don't hide interface inventory item when examining
Commit: b9878636dc669fb3d417dda64be5cc13ad6dcac4
https://github.com/scummvm/scummvm/commit/b9878636dc669fb3d417dda64be5cc13ad6dcac4
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-08-16T21:19:46+10:00
Commit Message:
MADS: Fix for turning off spinning inventory items
Changed paths:
engines/mads/core/config.cpp
diff --git a/engines/mads/core/config.cpp b/engines/mads/core/config.cpp
index 179d756067d..8e0783531c6 100644
--- a/engines/mads/core/config.cpp
+++ b/engines/mads/core/config.cpp
@@ -102,7 +102,7 @@ void write_config_file() {
void global_load_config_parameters() {
inter_report_hotspots = (config_file.interface_hotspots == INTERFACE_BRAINDEAD);
- inter_spinning_objects = true;
+ inter_spinning_objects = (config_file.inventory_mode == INVENTORY_SPINNING);
inter_animation_running = true;
kernel_panning_speed = config_file.panning_speed;
Commit: 58f8f79224d3c9a0b99dd78fc41f8d69fd6ced89
https://github.com/scummvm/scummvm/commit/58f8f79224d3c9a0b99dd78fc41f8d69fd6ced89
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-08-16T21:38:38+10:00
Commit Message:
MADS: NEBULAR: Don't hide interface inventory item when examining
Changed paths:
engines/mads/core/object.cpp
diff --git a/engines/mads/core/object.cpp b/engines/mads/core/object.cpp
index dd72d92d327..1a2ea04b6ad 100644
--- a/engines/mads/core/object.cpp
+++ b/engines/mads/core/object.cpp
@@ -225,7 +225,8 @@ int object_examine(int number, long message, int speech) {
cursor_last = cursor_id;
}
- inter_turn_off_object();
+ if (!isRex)
+ inter_turn_off_object();
inter_screen_update();
if (isMacRex)
inter_hide_macintosh_sentence();
More information about the Scummvm-git-logs
mailing list