aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/celobj32.h
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-03-23 18:42:37 +0100
committerAdrian Frühwirth2018-03-23 18:42:37 +0100
commit9e3376c8d0e7798d948f051e9314d5925fa312de (patch)
treec0795a0663a40929d4f6c9ff4d7fc081d24997e5 /engines/sci/graphics/celobj32.h
parent1967efc5cfc6e842bd37eb314b17c2b73f2e43e1 (diff)
downloadscummvm-rg350-9e3376c8d0e7798d948f051e9314d5925fa312de.tar.gz
scummvm-rg350-9e3376c8d0e7798d948f051e9314d5925fa312de.tar.bz2
scummvm-rg350-9e3376c8d0e7798d948f051e9314d5925fa312de.zip
JANITORIAL: Silence GCC warning
Diffstat (limited to 'engines/sci/graphics/celobj32.h')
-rw-r--r--engines/sci/graphics/celobj32.h3
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");
}
};