aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/tattoo_user_interface.cpp
diff options
context:
space:
mode:
authorD G Turner2019-12-01 01:21:09 +0000
committerD G Turner2019-12-01 01:21:09 +0000
commit538bb7ab3e2ce73ef57833859455ceb76467ce54 (patch)
treeedac4a6ff97c7018ed343575333a07cd65532a1c /engines/sherlock/tattoo/tattoo_user_interface.cpp
parentef30ebc0bb1f72d4ad12074ae6e808a2b8225af2 (diff)
downloadscummvm-rg350-538bb7ab3e2ce73ef57833859455ceb76467ce54.tar.gz
scummvm-rg350-538bb7ab3e2ce73ef57833859455ceb76467ce54.tar.bz2
scummvm-rg350-538bb7ab3e2ce73ef57833859455ceb76467ce54.zip
SHERLOCK: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'engines/sherlock/tattoo/tattoo_user_interface.cpp')
-rw-r--r--engines/sherlock/tattoo/tattoo_user_interface.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp
index 1cb0220bba..2b7b7fb5f4 100644
--- a/engines/sherlock/tattoo/tattoo_user_interface.cpp
+++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp
@@ -857,6 +857,9 @@ void TattooUserInterface::drawMaskArea(bool mode) {
maskArea(*_mask, Common::Point(xp, 203));
maskArea(*_mask1, Common::Point(124 + xp, 239));
break;
+
+ default:
+ break;
}
}
}