diff options
Diffstat (limited to 'scumm/script_v72he.cpp')
| -rw-r--r-- | scumm/script_v72he.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 9bf5407209..3d2bdd6c66 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -2141,6 +2141,11 @@ void ScummEngine_v72he::o72_writeINI() { case 7: // string copyScriptString(string, sizeof(string)); copyScriptString(option, sizeof(option)); + + // Filter out confusing or useless settings + if (!strcmp((char *)option, "HETest") || !strcmp((char *)option, "SaveGamePath")) + return; + ConfMan.set((char *)option, (char *)string); break; default: |
