aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v72he.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r--scumm/script_v72he.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index 3d2bdd6c66..de200650d0 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -2135,7 +2135,7 @@ void ScummEngine_v72he::o72_writeINI() {
case 6: // number
value = pop();
copyScriptString(option, sizeof(option));
- ConfMan.set((char *)option, value);
+ ConfMan.set((char *)option, value);
break;
case 77: // HE 100
case 7: // string
@@ -2152,6 +2152,8 @@ void ScummEngine_v72he::o72_writeINI() {
error("o72_writeINI: default type %d", type);
}
+ debug(0, "o72_writeINI: option %s", option);
+
ConfMan.flushToDisk();
}