X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Fmenu.c;h=74e7a6d24ae6704a1dea560ae6bf19de67dd5dff;hb=388947f33d88ce3de0d9cb3e873244fbb5162a59;hp=32bf12fd6d245a080e0720561c4f6ed7cf662217;hpb=0fc3250a875c96efc4e43873cfa319eb4b25a95a;p=libpicofe.git diff --git a/common/menu.c b/common/menu.c index 32bf12f..74e7a6d 100644 --- a/common/menu.c +++ b/common/menu.c @@ -1286,19 +1286,19 @@ me_bind_action me_ctrl_actions[15] = // "LOAD STATE", "VOLUME UP", "VOLUME DOWN", "DONE" me_bind_action emuctrl_actions[] = { - { "Load State ", 1<<28 }, - { "Save State ", 1<<27 }, - { "Prev Save Slot ", 1<<25 }, - { "Next Save Slot ", 1<<24 }, - { "Switch Renderer ", 1<<26 }, - { "Volume Down ", 1<<30 }, - { "Volume Up ", 1<<29 }, - { "Fast forward ", 1<<22 }, - { "Enter Menu ", 1<<23 }, - { "Pico Next page ", 1<<21 }, - { "Pico Prev page ", 1<<20 }, - { "Pico Switch input", 1<<19 }, - { NULL, 0 } + { "Load State ", 1 << PEVB_STATE_LOAD }, + { "Save State ", 1 << PEVB_STATE_SAVE }, + { "Prev Save Slot ", 1 << PEVB_SSLOT_PREV }, + { "Next Save Slot ", 1 << PEVB_SSLOT_NEXT }, + { "Switch Renderer ", 1 << PEVB_SWITCH_RND }, + { "Volume Down ", 1 << PEVB_VOL_DOWN }, + { "Volume Up ", 1 << PEVB_VOL_UP }, + { "Fast forward ", 1 << PEVB_FF }, + { "Enter Menu ", 1 << PEVB_MENU }, + { "Pico Next page ", 1 << 21 }, /* TODO */ + { "Pico Prev page ", 1 << 20 }, + { "Pico Switch input", 1 << 19 }, + { NULL, 0 } }; static int key_config_loop_wrap(menu_id id, int keys)