diff options
author | Torbjörn Andersson | 2010-01-22 19:05:02 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-01-22 19:05:02 +0000 |
commit | 48184679086094cc5d6067de8c31a6823fc71732 (patch) | |
tree | dd366cf38861efbf803aa194e455577efcea8871 /graphics | |
parent | 8f41cc0631914a6a743a1efa5275d8fa399b4f12 (diff) | |
download | scummvm-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 'graphics')
-rw-r--r-- | graphics/video/video_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/video/video_player.cpp b/graphics/video/video_player.cpp index a8c4ccba89..ed96ac5fc5 100644 --- a/graphics/video/video_player.cpp +++ b/graphics/video/video_player.cpp @@ -167,7 +167,7 @@ void VideoPlayer::processVideoEvents(Common::List<Common::Event> &stopEvents) { _skipVideo = true; } - for (Common::List<Common::Event>::const_iterator iter = stopEvents.begin(); iter != stopEvents.end(); iter++) { + for (Common::List<Common::Event>::const_iterator iter = stopEvents.begin(); iter != stopEvents.end(); ++iter) { if (curEvent.type == iter->type) { if (iter->type == Common::EVENT_KEYDOWN || iter->type == Common::EVENT_KEYUP) { if (curEvent.kbd.keycode == iter->kbd.keycode) { |