From 9190f6e1c8047446dd9c9c70525bc0e855cbe8dc Mon Sep 17 00:00:00 2001 From: D G Turner Date: Thu, 14 Nov 2019 02:44:19 +0000 Subject: 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. --- engines/fullpipe/scenes/scene31.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engines/fullpipe/scenes/scene31.cpp') diff --git a/engines/fullpipe/scenes/scene31.cpp b/engines/fullpipe/scenes/scene31.cpp index 3f507e62b7..3c5469052a 100644 --- a/engines/fullpipe/scenes/scene31.cpp +++ b/engines/fullpipe/scenes/scene31.cpp @@ -118,6 +118,9 @@ int sceneHandler31(ExCommand *cmd) { g_fp->_behaviorManager->updateBehaviors(); break; + + default: + break; } return 0; -- cgit v1.2.3