diff --git a/0016-on.mouse_press b/0016-on.mouse_press index 2f2ed31..6e8faa6 100644 --- a/0016-on.mouse_press +++ b/0016-on.mouse_press @@ -2,7 +2,7 @@ on.mouse_press = function(x,y, mouse_button) -- == menu area -- some hysteresis right after a button has been pressed if Active_button then return end - if mouse_press_consumed_by_any_button_handler(Global_state, x,y, mouse_button) then + if mouse_press_consumed_by_any_button(Global_state, x,y, mouse_button) then Button_pressed = true return end @@ -49,4 +49,4 @@ on.mouse_press = function(x,y, mouse_button) call_protected(car.mousepressed, x,y, mouse_button) end end -end \ No newline at end of file +end