From 8f9a655769ef0b5b96ee6f5626c59ab260ea8905 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Sat, 21 Mar 2009 19:38:33 +0000 Subject: Check for a suffix of "-iq" when saving the iq points. Should fix bug #2701064. svn-id: r39597 --- 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 be67778d4f..4072f8f720 100644 --- a/engines/scumm/script_v5.cpp +++ b/engines/scumm/script_v5.cpp @@ -2089,7 +2089,7 @@ void ScummEngine_v5::o5_roomOps() { while ((chr = fetchScriptByte())) filename += chr; - if (filename.hasPrefix("iq-")) { + if (filename.hasPrefix("iq-") || filename.hasSuffix("-iq")) { filename = _targetName + ".iq"; } else { error("SO_SAVE_STRING: Unsupported filename %s\n", filename.c_str()); @@ -2114,7 +2114,7 @@ void ScummEngine_v5::o5_roomOps() { while ((chr = fetchScriptByte())) filename += chr; - if (filename.hasPrefix("iq-")) { + if (filename.hasPrefix("iq-") || filename.hasSuffix("-iq")) { filename = _targetName + ".iq"; } else { error("SO_SAVE_STRING: Unsupported filename %s\n", filename.c_str()); -- cgit v1.2.3