first incomplete pass at options
layout is done, need to polish up the frontend and emulator options and sort out the mess of input overrides
This commit is contained in:
parent
501aa77d14
commit
3cfd1313c6
14 changed files with 1278 additions and 179 deletions
24
src/minarch/overrides/gpsp.h
Normal file
24
src/minarch/overrides/gpsp.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#include "overrides.h"
|
||||
|
||||
static CoreOverrides gpsp_overrides = {
|
||||
.core_name = "gpsp",
|
||||
.option_overrides = (OptionOverride[]){
|
||||
{"gpsp_save_method", "libretro", 1},
|
||||
{NULL,NULL},
|
||||
},
|
||||
.button_mapping = (ButtonMapping[]){
|
||||
{"UP", RETRO_DEVICE_ID_JOYPAD_UP, BTN_ID_UP},
|
||||
{"DOWN", RETRO_DEVICE_ID_JOYPAD_DOWN, BTN_ID_DOWN},
|
||||
{"LEFT", RETRO_DEVICE_ID_JOYPAD_LEFT, BTN_ID_LEFT},
|
||||
{"RIGHT", RETRO_DEVICE_ID_JOYPAD_RIGHT, BTN_ID_RIGHT},
|
||||
{"SELECT", RETRO_DEVICE_ID_JOYPAD_SELECT, BTN_ID_SELECT},
|
||||
{"START", RETRO_DEVICE_ID_JOYPAD_START, BTN_ID_START},
|
||||
{"A BUTTON", RETRO_DEVICE_ID_JOYPAD_A, BTN_ID_A},
|
||||
{"B BUTTON", RETRO_DEVICE_ID_JOYPAD_B, BTN_ID_B},
|
||||
{"A TURBO", RETRO_DEVICE_ID_JOYPAD_X, BTN_ID_NONE},
|
||||
{"B TURBO", RETRO_DEVICE_ID_JOYPAD_Y, BTN_ID_NONE},
|
||||
{"L BUTTON", RETRO_DEVICE_ID_JOYPAD_L, BTN_ID_L1},
|
||||
{"R BUTTON", RETRO_DEVICE_ID_JOYPAD_R, BTN_ID_R1},
|
||||
{NULL,0,0},
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue