aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/cstime_ui.cpp
diff options
context:
space:
mode:
authorD G Turner2019-12-02 00:16:10 +0000
committerD G Turner2019-12-02 00:16:10 +0000
commit1072fca204c17fbd15cd6fbfc388ba300c0dcd03 (patch)
tree12b12a2a7952a988119b41855115b9a0cd1ac158 /engines/mohawk/cstime_ui.cpp
parentf122bb69f9e6f9489621982d6e451d459ba79c08 (diff)
downloadscummvm-rg350-1072fca204c17fbd15cd6fbfc388ba300c0dcd03.tar.gz
scummvm-rg350-1072fca204c17fbd15cd6fbfc388ba300c0dcd03.tar.bz2
scummvm-rg350-1072fca204c17fbd15cd6fbfc388ba300c0dcd03.zip
MOHAWK: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'engines/mohawk/cstime_ui.cpp')
-rw-r--r--engines/mohawk/cstime_ui.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/mohawk/cstime_ui.cpp b/engines/mohawk/cstime_ui.cpp
index 59be95adf6..c4bbc7e2af 100644
--- a/engines/mohawk/cstime_ui.cpp
+++ b/engines/mohawk/cstime_ui.cpp
@@ -265,6 +265,8 @@ void CSTimeInterface::mouseDown(Common::Point pos) {
case 13:
cursorChangeShape(14);
break;
+ default:
+ break;
}
if (_book->getState() == 2) {
@@ -442,6 +444,8 @@ void CSTimeInterface::mouseUp(Common::Point pos) {
case 14:
cursorChangeShape(13);
break;
+ default:
+ break;
}
if (_vm->getCase()->getCurrScene()->eventIsActive()) {