diff options
author | Willem Jan Palenstijn | 2017-05-26 19:33:53 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2017-05-26 19:33:59 +0200 |
commit | d9807b0fca2fa8e139407ec91bb0e242e01ba82d (patch) | |
tree | 4e2f62f6e3fad36f2635dbfb23a2bfb2b08b614a /engines | |
parent | 04fb40be2d1cc004f4f745434a93ff67694bba27 (diff) | |
download | scummvm-rg350-d9807b0fca2fa8e139407ec91bb0e242e01ba82d.tar.gz scummvm-rg350-d9807b0fca2fa8e139407ec91bb0e242e01ba82d.tar.bz2 scummvm-rg350-d9807b0fca2fa8e139407ec91bb0e242e01ba82d.zip |
SCI32: Fix warning
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/graphics/celobj32.h | 2 |
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"); } } }; |