From deb6dc53579338fafaf620180a931c289e9e1662 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sun, 20 Oct 2019 21:15:43 +0100 Subject: PARALLACTION: Fix Missing Default Switch Cases These are flagged by GCC if -Wswitch-default is enabled. --- engines/parallaction/sound_ns.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engines/parallaction/sound_ns.cpp') diff --git a/engines/parallaction/sound_ns.cpp b/engines/parallaction/sound_ns.cpp index 6073f82b82..d902cef736 100644 --- a/engines/parallaction/sound_ns.cpp +++ b/engines/parallaction/sound_ns.cpp @@ -378,6 +378,9 @@ void SoundMan_ns::execute(int command, const char *parm = 0) { case SC_PAUSE: pause(b); break; + + default: + break; } } -- cgit v1.2.3