comparison src/joystick/dummy/SDL_sysjoystick.c @ 1635:92947e3a18db

Make sure code is only compiled if the appropriate subsystem is enabled
author Sam Lantinga <slouken@libsdl.org>
date Fri, 14 Apr 2006 04:46:47 +0000
parents d910939febfa
children 782fd950bd46 c121d94672cb a1b03ba2fcd0
comparison
equal deleted inserted replaced
1634:14f302c5b32c 1635:92947e3a18db
18 18
19 Sam Lantinga 19 Sam Lantinga
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 #include "SDL_config.h" 22 #include "SDL_config.h"
23
24 #if defined(SDL_JOYSTICK_DUMMY) || defined(SDL_JOYSTICK_DISABLED)
23 25
24 /* This is the system specific header for the SDL joystick API */ 26 /* This is the system specific header for the SDL joystick API */
25 27
26 #include "SDL_joystick.h" 28 #include "SDL_joystick.h"
27 #include "../SDL_sysjoystick.h" 29 #include "../SDL_sysjoystick.h"
76 void SDL_SYS_JoystickQuit(void) 78 void SDL_SYS_JoystickQuit(void)
77 { 79 {
78 return; 80 return;
79 } 81 }
80 82
83 #endif /* SDL_JOYSTICK_DUMMY || SDL_JOYSTICK_DISABLED */