redquark-amiberry-rb/src/osdep/config.h

75 lines
1.1 KiB
C
Raw Normal View History

2016-11-30 20:44:31 +01:00
/*
* UAE - The Un*x Amiga Emulator
*
* User configuration options
*
* Copyright 1995 - 1998 Bernd Schmidt
*/
2015-05-13 18:47:23 +00:00
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (A) button
* default: HOME (278)
*/
2017-01-29 12:40:44 +01:00
#pragma once
2017-01-23 22:09:20 +01:00
#define VK_A SDL_SCANCODE_HOME
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (B) button
* default: END (279)
*/
2017-01-23 22:09:20 +01:00
#define VK_B SDL_SCANCODE_END
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (X) button
* default: PAGEDOWN (281)
*/
2017-01-23 22:09:20 +01:00
#define VK_X SDL_SCANCODE_PAGEDOWN
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (Y) button
* default: PAGEUP (280)
*/
2017-01-23 22:09:20 +01:00
#define VK_Y SDL_SCANCODE_PAGEUP
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (Left shoulder) button
* default: RSHIFT (303)
*/
2017-01-23 22:09:20 +01:00
#define VK_L SDL_SCANCODE_RSHIFT
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (Right shoulder) button
* default: RCTRL (305)
*/
2017-01-23 22:09:20 +01:00
#define VK_R SDL_SCANCODE_RCTRL
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (up) button
* default: UP (273)
*/
#define VK_UP SDLK_UP
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (down) button
* default: DOWN (274)
*/
#define VK_DOWN SDLK_DOWN
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (right) button
* default: RIGHT (275)
*/
#define VK_RIGHT SDLK_RIGHT
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (left) button
* default: LEFT (276)
*/
#define VK_LEFT SDLK_LEFT
2016-11-30 20:44:31 +01:00
/*
* Virtual Key for (ESC) button
* default: ESC (27)
*/
#define VK_ESCAPE SDLK_ESCAPE