74 lines
1.1 KiB
C
74 lines
1.1 KiB
C
/*
|
|
* UAE - The Un*x Amiga Emulator
|
|
*
|
|
* User configuration options
|
|
*
|
|
* Copyright 1995 - 1998 Bernd Schmidt
|
|
*/
|
|
|
|
/*
|
|
* Virtual Key for (A) button
|
|
* default: HOME (278)
|
|
*/
|
|
#pragma once
|
|
#define VK_A SDL_SCANCODE_HOME
|
|
|
|
/*
|
|
* Virtual Key for (B) button
|
|
* default: END (279)
|
|
*/
|
|
#define VK_B SDL_SCANCODE_END
|
|
|
|
/*
|
|
* Virtual Key for (X) button
|
|
* default: PAGEDOWN (281)
|
|
*/
|
|
#define VK_X SDL_SCANCODE_PAGEDOWN
|
|
|
|
/*
|
|
* Virtual Key for (Y) button
|
|
* default: PAGEUP (280)
|
|
*/
|
|
#define VK_Y SDL_SCANCODE_PAGEUP
|
|
|
|
/*
|
|
* Virtual Key for (Left shoulder) button
|
|
* default: RSHIFT (303)
|
|
*/
|
|
#define VK_L SDL_SCANCODE_RSHIFT
|
|
|
|
/*
|
|
* Virtual Key for (Right shoulder) button
|
|
* default: RCTRL (305)
|
|
*/
|
|
#define VK_R SDL_SCANCODE_RCTRL
|
|
|
|
/*
|
|
* Virtual Key for (up) button
|
|
* default: UP (273)
|
|
*/
|
|
#define VK_UP SDLK_UP
|
|
|
|
/*
|
|
* Virtual Key for (down) button
|
|
* default: DOWN (274)
|
|
*/
|
|
#define VK_DOWN SDLK_DOWN
|
|
|
|
/*
|
|
* Virtual Key for (right) button
|
|
* default: RIGHT (275)
|
|
*/
|
|
#define VK_RIGHT SDLK_RIGHT
|
|
|
|
/*
|
|
* Virtual Key for (left) button
|
|
* default: LEFT (276)
|
|
*/
|
|
#define VK_LEFT SDLK_LEFT
|
|
|
|
/*
|
|
* Virtual Key for (ESC) button
|
|
* default: ESC (27)
|
|
*/
|
|
#define VK_ESCAPE SDLK_ESCAPE
|