From 4fba2ab2ddda75a05c70ac95531504edfafdf8c8 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Tue, 20 Sep 2011 20:47:19 +0000 Subject: Add TXT_MessageBox convenience function. Subversion-branch: /branches/v2-branch Subversion-revision: 2388 --- src/setup/joystick.c | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'src/setup') diff --git a/src/setup/joystick.c b/src/setup/joystick.c index 48074121..064ff99d 100644 --- a/src/setup/joystick.c +++ b/src/setup/joystick.c @@ -270,19 +270,9 @@ static int CalibrationEventCallback(SDL_Event *event, void *user_data) static void NoJoystick(void) { - txt_window_t *window; - - window = TXT_NewWindow(NULL); - - TXT_AddWidget(window, - TXT_NewLabel("No joysticks could be opened.\n\n" - "Try configuring your joystick from within\n" - "your OS first.")); - - TXT_SetWindowAction(window, TXT_HORIZ_LEFT, NULL); - TXT_SetWindowAction(window, TXT_HORIZ_CENTER, - TXT_NewWindowEscapeAction(window)); - TXT_SetWindowAction(window, TXT_HORIZ_RIGHT, NULL); + TXT_MessageBox(NULL, "No joysticks could be opened.\n\n" + "Try configuring your joystick from within\n" + "your OS first."); joystick_index = -1; SetJoystickButtonLabel(); -- cgit v1.2.3