From 068e11fee9c6e7077ef862ab4e0bd8bfdf6ae660 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 9 Apr 2009 03:38:41 +0000 Subject: Judging by bug #2727536 (and a forum post) we should recognize "IQ-" as a valid prefix for the Fate of Atlantis IQ points file. (Either that, or make the comparision case-insensitive.) So let's do that. svn-id: r39904 --- engines/scumm/script_v5.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/scumm') diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp index 4a980d8b67..7700c13301 100644 --- a/engines/scumm/script_v5.cpp +++ b/engines/scumm/script_v5.cpp @@ -2144,7 +2144,7 @@ void ScummEngine_v5::o5_roomOps() { while ((chr = fetchScriptByte())) filename += chr; - if (filename.hasPrefix("iq-") || filename.hasSuffix("-iq")) { + if (filename.hasPrefix("iq-") || filename.hasPrefix("IQ-") || filename.hasSuffix("-iq")) { filename = _targetName + ".iq"; } else { error("SO_SAVE_STRING: Unsupported filename %s\n", filename.c_str()); @@ -2169,7 +2169,7 @@ void ScummEngine_v5::o5_roomOps() { while ((chr = fetchScriptByte())) filename += chr; - if (filename.hasPrefix("iq-") || filename.hasSuffix("-iq")) { + if (filename.hasPrefix("iq-") || filename.hasPrefix("IQ-") || filename.hasSuffix("-iq")) { filename = _targetName + ".iq"; } else { error("SO_LOAD_STRING: Unsupported filename %s\n", filename.c_str()); -- cgit v1.2.3