aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2010-12-06 19:58:22 +0000
committerFilippos Karapetis2010-12-06 19:58:22 +0000
commit813d96ec20c38de2344da8dcb90c3faa3b066f5e (patch)
tree5db8b1b3f73569b418f179e626384f803fd0918a
parentc2ec6020e3bfdfb4e6bbd76e409ddd3cf7306ea1 (diff)
downloadscummvm-rg350-813d96ec20c38de2344da8dcb90c3faa3b066f5e.tar.gz
scummvm-rg350-813d96ec20c38de2344da8dcb90c3faa3b066f5e.tar.bz2
scummvm-rg350-813d96ec20c38de2344da8dcb90c3faa3b066f5e.zip
MOHAWK: Silenced warning
svn-id: r54800
-rw-r--r--engines/mohawk/livingbooks.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp
index 317b8b828b..f956874461 100644
--- a/engines/mohawk/livingbooks.cpp
+++ b/engines/mohawk/livingbooks.cpp
@@ -2177,6 +2177,8 @@ bool LBValue::operator==(const LBValue &x) const {
case kLBValueInteger:
return integer == x.integer;
+ default:
+ error("Unknown type when testing for equality");
}
}