aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/locations.cpp
diff options
context:
space:
mode:
authorD G Turner2019-11-09 01:03:55 +0000
committerD G Turner2019-11-09 01:03:55 +0000
commit5447a13013a91f9b0f4ddf26c7a56cdec71eb59b (patch)
tree9584b5572fb6eca1fd91ec495dd637991715c7fb /engines/xeen/locations.cpp
parentb2452d6ffde98777353b2e2d9fcfd2de66d5a28b (diff)
downloadscummvm-rg350-5447a13013a91f9b0f4ddf26c7a56cdec71eb59b.tar.gz
scummvm-rg350-5447a13013a91f9b0f4ddf26c7a56cdec71eb59b.tar.bz2
scummvm-rg350-5447a13013a91f9b0f4ddf26c7a56cdec71eb59b.zip
XEEN: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'engines/xeen/locations.cpp')
-rw-r--r--engines/xeen/locations.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp
index 7ebdce3f19..15cd6a8de4 100644
--- a/engines/xeen/locations.cpp
+++ b/engines/xeen/locations.cpp
@@ -1958,6 +1958,9 @@ int DwarfCutscene::show() {
case 2:
sound.playSound("dwarf12.voc");
break;
+
+ default:
+ break;
}
events.updateGameCounter();
@@ -2158,6 +2161,8 @@ int SphinxCutscene::show() {
case 2:
sound.playSound("sphinx12.voc");
break;
+ default:
+ break;
}
do {