[Scummvm-git-logs] scummvm master -> ca4ca79532120cd484cca33df1261c376e3df482
dreammaster
noreply at scummvm.org
Thu Jul 30 02:51:35 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:
ca4ca79532 MADS: Fix config_file screen_fade field
Commit: ca4ca79532120cd484cca33df1261c376e3df482
https://github.com/scummvm/scummvm/commit/ca4ca79532120cd484cca33df1261c376e3df482
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-07-30T12:50:48+10:00
Commit Message:
MADS: Fix config_file screen_fade field
Changed paths:
engines/mads/core/config.cpp
diff --git a/engines/mads/core/config.cpp b/engines/mads/core/config.cpp
index 8f86ad1c1e1..13307752a64 100644
--- a/engines/mads/core/config.cpp
+++ b/engines/mads/core/config.cpp
@@ -70,7 +70,7 @@ void read_config_file() {
config_file.naughtiness = ConfMan.getBool("naughtiness") ? NAUGHTY : NICE;
config_file.quotes_enabled = ConfMan.getBool("quotes_enabled");
- config_file.screen_fade = ConfMan.getBool("screen_fade");
+ config_file.screen_fade = ConfMan.getInt("screen_fade");
config_file.panning_speed = ConfMan.getInt("panning_speed");
config_file.show_speech_boxes = ConfMan.getBool("show_speech_boxes");
@@ -90,7 +90,7 @@ void write_config_file() {
ConfMan.setBool("animated_interface", config_file.animated_interface);
ConfMan.setBool("quotes_enabled", config_file.quotes_enabled);
- ConfMan.setBool("screen_fade", config_file.screen_fade);
+ ConfMan.setInt("screen_fade", config_file.screen_fade);
ConfMan.setInt("panning_speed", config_file.panning_speed);
ConfMan.setBool("show_speech_boxes", config_file.show_speech_boxes);
More information about the Scummvm-git-logs
mailing list