diff options
Diffstat (limited to 'setup/joystick.c')
-rw-r--r-- | setup/joystick.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setup/joystick.c b/setup/joystick.c index fe87439c..5d2dfd68 100644 --- a/setup/joystick.c +++ b/setup/joystick.c @@ -25,6 +25,7 @@ #include "textscreen.h" #include "txt_joybinput.h" +#include "execute.h" #include "joystick.h" typedef enum @@ -438,6 +439,8 @@ void ConfigJoystick(void) TXT_SignalConnect(joystick_button, "pressed", CalibrateJoystick, NULL); TXT_SignalConnect(window, "closed", JoystickWindowClosed, NULL); + TXT_SetWindowAction(window, TXT_HORIZ_CENTER, TestConfigAction()); + SetJoystickButtonLabel(); } |