diff options
author | Adrian Frühwirth | 2018-03-23 18:42:37 +0100 |
---|---|---|
committer | Adrian Frühwirth | 2018-03-23 18:42:37 +0100 |
commit | 9e3376c8d0e7798d948f051e9314d5925fa312de (patch) | |
tree | c0795a0663a40929d4f6c9ff4d7fc081d24997e5 /engines/sci | |
parent | 1967efc5cfc6e842bd37eb314b17c2b73f2e43e1 (diff) | |
download | scummvm-rg350-9e3376c8d0e7798d948f051e9314d5925fa312de.tar.gz scummvm-rg350-9e3376c8d0e7798d948f051e9314d5925fa312de.tar.bz2 scummvm-rg350-9e3376c8d0e7798d948f051e9314d5925fa312de.zip |
JANITORIAL: Silence GCC warning
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/celobj32.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/graphics/celobj32.h b/engines/sci/graphics/celobj32.h index 02b2859f5c..37e9d39bf5 100644 --- a/engines/sci/graphics/celobj32.h +++ b/engines/sci/graphics/celobj32.h @@ -132,6 +132,9 @@ struct CelInfo32 { default: assert(!"Should never happen"); } + // This code should not be reached but the compiler expects to see a legal + // return from a non-void function. + return Common::String("here be dragons"); } }; |