From a51b6c7392a7f216923e9254400c7b0821b6adb8 Mon Sep 17 00:00:00 2001 From: Zackhasacat Date: Sun, 7 Apr 2024 15:23:27 -0500 Subject: [PATCH] Remove menu select --- files/data/scripts/omw/input/gamepadcontrols.lua | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/files/data/scripts/omw/input/gamepadcontrols.lua b/files/data/scripts/omw/input/gamepadcontrols.lua index 9c8810b98f..0af17efa39 100644 --- a/files/data/scripts/omw/input/gamepadcontrols.lua +++ b/files/data/scripts/omw/input/gamepadcontrols.lua @@ -25,17 +25,5 @@ return { setGamepadCursorActive = function(state) input._setGamepadCursorActive(state) end, - - --- Sends an event to the interface to select the next menu element - -- @function [parent=#GamepadControls] selectNextMenuElement - selectNextMenuElement = function(state) - input._selectNextMenuElement() - end, - - --- Sends an event to the interface to select the next menu element - -- @function [parent=#GamepadControls] selectPrevMenuElement - selectPrevMenuElement = function(state) - input._selectPrevMenuElement() - end, } }