aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2017-05-26 19:33:53 +0200
committerWillem Jan Palenstijn2017-05-26 19:33:59 +0200
commitd9807b0fca2fa8e139407ec91bb0e242e01ba82d (patch)
tree4e2f62f6e3fad36f2635dbfb23a2bfb2b08b614a
parent04fb40be2d1cc004f4f745434a93ff67694bba27 (diff)
downloadscummvm-rg350-d9807b0fca2fa8e139407ec91bb0e242e01ba82d.tar.gz
scummvm-rg350-d9807b0fca2fa8e139407ec91bb0e242e01ba82d.tar.bz2
scummvm-rg350-d9807b0fca2fa8e139407ec91bb0e242e01ba82d.zip
SCI32: Fix warning
-rw-r--r--engines/sci/graphics/celobj32.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/graphics/celobj32.h b/engines/sci/graphics/celobj32.h
index 598a062f21..d51913473c 100644
--- a/engines/sci/graphics/celobj32.h
+++ b/engines/sci/graphics/celobj32.h
@@ -134,6 +134,8 @@ struct CelInfo32 {
return Common::String::format("color %d", color);
case kCelTypeMem:
return Common::String::format("mem %04x:%04x", PRINT_REG(bitmap));
+ default:
+ assert(!"Should never happen");
}
}
};