From 1072fca204c17fbd15cd6fbfc388ba300c0dcd03 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Mon, 2 Dec 2019 00:16:10 +0000 Subject: MOHAWK: Fix Missing Default Switch Cases These are flagged by GCC if -Wswitch-default is enabled. --- engines/mohawk/riven_stacks/gspit.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'engines/mohawk/riven_stacks') diff --git a/engines/mohawk/riven_stacks/gspit.cpp b/engines/mohawk/riven_stacks/gspit.cpp index d2440ecd48..5e76787643 100644 --- a/engines/mohawk/riven_stacks/gspit.cpp +++ b/engines/mohawk/riven_stacks/gspit.cpp @@ -339,6 +339,8 @@ void GSpit::xgplaywhark(const ArgumentArray &args) { // Red alert! Shields online! Brace yourself for impact! _vm->getCard()->playMovie(8); break; + default: + break; } // For whatever reason the devs felt fit, code 31 is used for all of the videos -- cgit v1.2.3