9 lines
263 B
C
9 lines
263 B
C
/* see http://sdlk.beuc.net/sdl.wiki/SDLKey for keysyms */
|
|
|
|
#define DPAD_UP SDLK_w
|
|
#define DPAD_DOWN SDLK_s
|
|
#define DPAD_LEFT SDLK_a
|
|
#define DPAD_RIGHT SDLK_d
|
|
#define A_BUTTON SDLK_j
|
|
#define FS_BUTTON SDLK_f
|
|
#define PAUSE_BUTTON SDLK_q
|