aboutsummaryrefslogtreecommitdiff
path: root/gui/onscreendialog.cpp
diff options
context:
space:
mode:
authorD G Turner2019-10-03 06:03:46 +0100
committerD G Turner2019-10-03 06:03:46 +0100
commit30c366ee5db4c27e9d0ef94fd5786af55b1b0147 (patch)
treed241f64a12d20a9a8b8eb636a841be200a91ae87 /gui/onscreendialog.cpp
parent904e58c35b00c02bf869c17abb9f037e76d4a1a4 (diff)
downloadscummvm-rg350-30c366ee5db4c27e9d0ef94fd5786af55b1b0147.tar.gz
scummvm-rg350-30c366ee5db4c27e9d0ef94fd5786af55b1b0147.tar.bz2
scummvm-rg350-30c366ee5db4c27e9d0ef94fd5786af55b1b0147.zip
GUI: Add Missing Switch Default Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'gui/onscreendialog.cpp')
-rw-r--r--gui/onscreendialog.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/onscreendialog.cpp b/gui/onscreendialog.cpp
index 8b338f56df..7d348d720d 100644
--- a/gui/onscreendialog.cpp
+++ b/gui/onscreendialog.cpp
@@ -153,6 +153,8 @@ void OnScreenDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
case kFastModeCmd:
g_eventRec.switchFastMode();
break;
+ default:
+ break;
}
}