From b8f4f4d4f2b24b0776d37a3ceb322aaec5d8e5ff Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 5 Sep 2005 07:50:41 +0000 Subject: Filter out Version INI setting in HE games. svn-id: r18776 --- scumm/script_v72he.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scumm/script_v72he.cpp') 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")) -- cgit v1.2.3