From 65585f643375e71d21d1c33e7c2f9a118897837d Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Wed, 10 Mar 2010 06:39:23 +0000 Subject: Silenced some harmless cppcheck warnings about unreachable code after a return. In this case, it was always a break after a return in a switch case. There are similar cases which cppcheck didn't detect, and a couple of cases where we have a break after a continue in a switch case (where the continue refers to an outer loop), but I didn't touch those. Not yet, at least. svn-id: r48218 --- engines/agi/preagi_troll.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'engines/agi') diff --git a/engines/agi/preagi_troll.cpp b/engines/agi/preagi_troll.cpp index 96a3147e5a..4e87c8063c 100644 --- a/engines/agi/preagi_troll.cpp +++ b/engines/agi/preagi_troll.cpp @@ -81,8 +81,6 @@ bool Troll::getMenuSel(const char *szMenu, int *iSel, int nSel) { inventory(); return false; - - break; case Common::KEYCODE_DOWN: case Common::KEYCODE_SPACE: *iSel += 1; -- cgit v1.2.3