diff options
-rw-r--r-- | scumm/script_v72he.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index d400fb97a8..281ec6b0e1 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -2221,11 +2221,12 @@ void ScummEngine_v72he::o72_writeINI() { copyScriptString(option, sizeof(option)); // Filter out useless settings - if (!strcmp((char *)option, "HETest")) + if (!strcmp((char *)option, "HETest") || !strcmp((char *)option, "Version")) return; // Filter out confusing subtitle setting if (!strcmp((char *)option, "TextOn")) + return; // Filter out confusing path settings if (!strcmp((char *)option, "DownLoadPath") || !strcmp((char *)option, "GameResourcePath") || !strcmp((char *)option, "SaveGamePath")) |