aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorJohannes Schickel2011-06-09 19:13:30 +0200
committerJohannes Schickel2011-06-09 19:13:30 +0200
commitf13143ef7db6ca572652f8febb062f348b314175 (patch)
tree769aa6408694485137e0d32e1f57640d11efdcf6 /engines/kyra
parent80d0bc0c85c45f76633a55cf56f504eaae83b2d0 (diff)
downloadscummvm-rg350-f13143ef7db6ca572652f8febb062f348b314175.tar.gz
scummvm-rg350-f13143ef7db6ca572652f8febb062f348b314175.tar.bz2
scummvm-rg350-f13143ef7db6ca572652f8febb062f348b314175.zip
KYRA: Add a default case to a switch statement.
This includes a TODO, about what to do if we ever hit this case.
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/gui_lol.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/kyra/gui_lol.cpp b/engines/kyra/gui_lol.cpp
index 80eacb3f87..fb11040168 100644
--- a/engines/kyra/gui_lol.cpp
+++ b/engines/kyra/gui_lol.cpp
@@ -2816,6 +2816,9 @@ int GUI_LoL::clickedOptionsMenu(Button *button) {
_vm->_landsFile = _vm->resource()->fileData(filename.c_str(), 0);
_newMenu = _lastMenu;
} break;
+ default:
+ // TODO: Is there anything we should do if we hit this case?
+ break;
}
return 1;