aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes/scene08.cpp
diff options
context:
space:
mode:
authorD G Turner2019-11-14 02:44:19 +0000
committerD G Turner2019-11-14 02:44:19 +0000
commit9190f6e1c8047446dd9c9c70525bc0e855cbe8dc (patch)
tree346b6730967544ef5b7efd05463853073b712c7a /engines/fullpipe/scenes/scene08.cpp
parent25a12ad89a96b8373760728b9aefb58f8530fac2 (diff)
downloadscummvm-rg350-9190f6e1c8047446dd9c9c70525bc0e855cbe8dc.tar.gz
scummvm-rg350-9190f6e1c8047446dd9c9c70525bc0e855cbe8dc.tar.bz2
scummvm-rg350-9190f6e1c8047446dd9c9c70525bc0e855cbe8dc.zip
FULLPIPE: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled. Also, do minor fixes for readability to switch statements.
Diffstat (limited to 'engines/fullpipe/scenes/scene08.cpp')
-rw-r--r--engines/fullpipe/scenes/scene08.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene08.cpp b/engines/fullpipe/scenes/scene08.cpp
index 00f8f93354..12170f04fe 100644
--- a/engines/fullpipe/scenes/scene08.cpp
+++ b/engines/fullpipe/scenes/scene08.cpp
@@ -550,6 +550,9 @@ int sceneHandler08(ExCommand *cmd) {
return res;
}
+ break;
+ default:
+ break;
}
return 0;