X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_mm%2Fmm_game.c;h=093e837363e306753ca2f178aa1340680c7c1898;hb=92ae204856b3b41863f4244dd75cc5c7268f034d;hp=0403795fcf48c21e334e4368807ce6180626b4c0;hpb=e89a21e95b3cb84d1515c0fb3378ce902a48c1c8;p=rocksndiamonds.git diff --git a/src/game_mm/mm_game.c b/src/game_mm/mm_game.c index 0403795f..093e8373 100644 --- a/src/game_mm/mm_game.c +++ b/src/game_mm/mm_game.c @@ -3056,7 +3056,7 @@ void ColorCycling(void) } } -static void GameActions_MM_Ext(struct MouseActionInfo action, boolean warp_mode) +static void GameActions_MM_Ext(struct MouseActionInfo action) { int element; int x, y, i; @@ -3673,12 +3673,12 @@ static void GameActions_MM_Ext(struct MouseActionInfo action, boolean warp_mode) return; } -void GameActions_MM(struct MouseActionInfo action, boolean warp_mode) +void GameActions_MM(struct MouseActionInfo action) { boolean element_clicked = ClickElement(action.lx, action.ly, action.button); boolean button_released = (action.button == MB_RELEASED); - GameActions_MM_Ext(action, warp_mode); + GameActions_MM_Ext(action); CheckSingleStepMode_MM(element_clicked, button_released); }