aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2006-02-25 18:24:55 +0000
committerMax Horn2006-02-25 18:24:55 +0000
commitbb4d4631385dbd9bec4dc67f9040878c92f41b26 (patch)
treef4409fbcfb7fdfd468379256fe541268f924b36b
parent05559c89f24e65fd1a2ee4092f1c84f8c50b9745 (diff)
downloadscummvm-rg350-bb4d4631385dbd9bec4dc67f9040878c92f41b26.tar.gz
scummvm-rg350-bb4d4631385dbd9bec4dc67f9040878c92f41b26.tar.bz2
scummvm-rg350-bb4d4631385dbd9bec4dc67f9040878c92f41b26.zip
Fix compiler warning (wrong return type)
svn-id: r20883
-rw-r--r--engines/scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index e77d7c1980..92329c3e9e 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1107,7 +1107,7 @@ static SubstResFileNames substResFileNameTable[] = {
{ NULL, NULL, kGenAsIs }
};
-static bool applySubstResFileName(const SubstResFileNames &subst, char *buf, int bufsize, const char *ext, int num) {
+static void applySubstResFileName(const SubstResFileNames &subst, char *buf, int bufsize, const char *ext, int num) {
switch (subst.genMethod) {
case kGenMac:
case kGenMacNoParens: