aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2008-03-20 11:58:18 +0000
committerTorbjörn Andersson2008-03-20 11:58:18 +0000
commit4669f2a659cd2682dcd362e14456c645c021ccee (patch)
tree8fffb808a82657ce0fa447bfa36574169f2763b3
parente69532bff2f9d6e864f1183fd3db5008fc836097 (diff)
downloadscummvm-rg350-4669f2a659cd2682dcd362e14456c645c021ccee.tar.gz
scummvm-rg350-4669f2a659cd2682dcd362e14456c645c021ccee.tar.bz2
scummvm-rg350-4669f2a659cd2682dcd362e14456c645c021ccee.zip
Fixed compilation.
svn-id: r31203
-rw-r--r--engines/kyra/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/resource.cpp b/engines/kyra/resource.cpp
index d40ff0bae4..bef6e872c2 100644
--- a/engines/kyra/resource.cpp
+++ b/engines/kyra/resource.cpp
@@ -220,7 +220,7 @@ bool Resource::loadFileList(const Common::String &filedata) {
// contain all pak files listed in filedata.fdt
// so we don't do anything here if they are non
// existant.
- else if (!loadPakFile(filename)) {
+ } else if (!loadPakFile(filename)) {
error("couldn't load file '%s'", filename.c_str());
return false;
}