removed unused function parameters
[rocksndiamonds.git] / src / game_mm / mm_game.c
index 0403795fcf48c21e334e4368807ce6180626b4c0..093e837363e306753ca2f178aa1340680c7c1898 100644 (file)
@@ -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);
 }