From abb15e3163538bba1d6292ef094341c260c3e065 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 18 Jul 2004 19:05:06 +0000 Subject: [PATCH] Date: Wed, 7 Jul 2004 12:57:58 +0200 From: "Markus F.X.J. Oberhumer" Subject: [SDL-CVS] [patch] small fix for SDL_joystick.h the tiny patch below (against current CVS) fixes a syntax error (not allow compilers allow multiple __cdecl). --- include/SDL_joystick.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_joystick.h b/include/SDL_joystick.h index 1b8f18032..00f0ba93c 100644 --- a/include/SDL_joystick.h +++ b/include/SDL_joystick.h @@ -68,7 +68,7 @@ extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index); * * This function returns a joystick identifier, or NULL if an error occurred. */ -extern DECLSPEC SDL_Joystick * SDLCALL SDLCALL SDL_JoystickOpen(int device_index); +extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index); /* * Returns 1 if the joystick has been opened, or 0 if it has not.