From 80c43f52e838c567a4f349a1a9d901407cbb56ef Mon Sep 17 00:00:00 2001 From: terkhen Date: Sun, 1 Aug 2010 20:52:11 +0000 Subject: (svn r20289) -Codechange: Unify fall through coding style. --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.cpp') diff --git a/src/window.cpp b/src/window.cpp index c1198a0bd..3081bc268 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -2247,8 +2247,8 @@ static void MouseLoop(MouseClick click, int mousewheel) if (!scrollwheel_scrolling || w == NULL || w->window_class != WC_SMALLMAP) break; /* We try to use the scrollwheel to scroll since we didn't touch any of the buttons. * Simulate a right button click so we can get started. */ + /* FALL THROUGH */ - /* fallthough */ case MC_RIGHT: DispatchRightClickEvent(w, x - w->left, y - w->top); break; case MC_HOVER: DispatchHoverEvent(w, x - w->left, y - w->top); break; -- cgit v1.2.3-54-g00ecf