aboutsummaryrefslogtreecommitdiff
path: root/engines/made/database.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-09-24 09:51:26 +0000
committerFilippos Karapetis2009-09-24 09:51:26 +0000
commitc91f5759b934faf42c208deb8b6c239769bdcb99 (patch)
tree5e834cbc160870c60bb4a0695d6a4ca276d0ffe0 /engines/made/database.cpp
parent3a976bfb6fdef95f18778168bbd3f61764d3394b (diff)
downloadscummvm-rg350-c91f5759b934faf42c208deb8b6c239769bdcb99.tar.gz
scummvm-rg350-c91f5759b934faf42c208deb8b6c239769bdcb99.tar.bz2
scummvm-rg350-c91f5759b934faf42c208deb8b6c239769bdcb99.zip
MADE: Fixed some warnings about unreachable code
svn-id: r44296
Diffstat (limited to 'engines/made/database.cpp')
-rw-r--r--engines/made/database.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/made/database.cpp b/engines/made/database.cpp
index e02aaa275e..2bf252b31f 100644
--- a/engines/made/database.cpp
+++ b/engines/made/database.cpp
@@ -80,7 +80,7 @@ int16 Object::getVectorSize() {
} else {
// should never reach here
error("Unknown object class");
- return 0;
+ //return 0;
}
}
@@ -94,7 +94,7 @@ int16 Object::getVectorItem(int16 index) {
} else {
// should never reach here
error("Unknown object class");
- return 0;
+ //return 0;
}
}