aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui_lol.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2010-01-22 19:05:02 +0000
committerTorbjörn Andersson2010-01-22 19:05:02 +0000
commit48184679086094cc5d6067de8c31a6823fc71732 (patch)
treedd366cf38861efbf803aa194e455577efcea8871 /engines/kyra/gui_lol.cpp
parent8f41cc0631914a6a743a1efa5275d8fa399b4f12 (diff)
downloadscummvm-rg350-48184679086094cc5d6067de8c31a6823fc71732.tar.gz
scummvm-rg350-48184679086094cc5d6067de8c31a6823fc71732.tar.bz2
scummvm-rg350-48184679086094cc5d6067de8c31a6823fc71732.zip
Silenced some more cppcheck warnings. Some of these may seem silly, but the way
I figure it the changes are harmless at worst, and making them will make it easier to find real errors in the (still quite long) list of warnings. svn-id: r47443
Diffstat (limited to 'engines/kyra/gui_lol.cpp')
-rw-r--r--engines/kyra/gui_lol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/gui_lol.cpp b/engines/kyra/gui_lol.cpp
index 78eebe3c3b..4a409f0107 100644
--- a/engines/kyra/gui_lol.cpp
+++ b/engines/kyra/gui_lol.cpp
@@ -2622,7 +2622,7 @@ int GUI_LoL::getInput() {
if (_currentMenu == &_savenameMenu) {
_vm->updateInput();
- for (Common::List<KyraEngine_v1::Event>::const_iterator evt = _vm->_eventList.begin(); evt != _vm->_eventList.end(); evt++) {
+ for (Common::List<KyraEngine_v1::Event>::const_iterator evt = _vm->_eventList.begin(); evt != _vm->_eventList.end(); ++evt) {
if (evt->event.type == Common::EVENT_KEYDOWN)
_keyPressed = evt->event.kbd;
}