Fixed misleading error message.

svn-id: r39903
This commit is contained in:
Torbjörn Andersson 2009-04-08 16:48:12 +00:00
parent ab08824b65
commit c111bb97f4

View file

@ -2172,7 +2172,7 @@ void ScummEngine_v5::o5_roomOps() {
if (filename.hasPrefix("iq-") || filename.hasSuffix("-iq")) {
filename = _targetName + ".iq";
} else {
error("SO_SAVE_STRING: Unsupported filename %s\n", filename.c_str());
error("SO_LOAD_STRING: Unsupported filename %s\n", filename.c_str());
}
Common::InSaveFile *file = _saveFileMan->openForLoading(filename.c_str());