mirror of
https://gitlab.com/octospacc/BloccSpacc
synced 2025-06-05 21:39:15 +02:00
Patches for PocketGo compilation
This commit is contained in:
@ -1,18 +1,28 @@
|
||||
#pragma once
|
||||
|
||||
#define KeyEsc SDLK_ESCAPE
|
||||
|
||||
#define KeyDebug SDLK_F3
|
||||
#define KeyGenFlatMap SDLK_F6
|
||||
#define KeyGenNoiseMap SDLK_F7
|
||||
|
||||
#define KeyUp SDLK_UP
|
||||
#define KeyDown SDLK_DOWN
|
||||
#define KeyLeft SDLK_LEFT
|
||||
#define KeyRight SDLK_RIGHT
|
||||
#define KeyEsc SDLK_ESCAPE
|
||||
#define KeyDebug SDLK_F3
|
||||
|
||||
#ifdef Target_PocketGo
|
||||
|
||||
#define KeyGenFlatMap SDLK_LSHIFT // X
|
||||
#define KeyGenNoiseMap SDLK_SPACE // Y
|
||||
#define KeyAbove SDLK_LALT // A
|
||||
#define KeyBelow SDLK_LCTRL // B
|
||||
#define KeyPlace SDLK_TAB // L
|
||||
#define KeyBreak SDLK_BACKSPACE // R
|
||||
|
||||
#else
|
||||
|
||||
#define KeyGenFlatMap SDLK_F6
|
||||
#define KeyGenNoiseMap SDLK_F7
|
||||
#define KeyAbove SDLK_LSHIFT
|
||||
#define KeyBelow SDLK_LCTRL
|
||||
|
||||
#define KeyPlace SDLK_z
|
||||
#define KeyBreak SDLK_x
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user