mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-13 13:10:53 +00:00
Filter out extra path setting and useless setting when writing INIs details in HE games.
svn-id: r17629
This commit is contained in:
parent
a117f4f832
commit
471a58680d
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user