mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Start adding 'ACTION_OK' binds for cheevos items
This commit is contained in:
parent
78d26b2e6f
commit
e490497530
@ -804,6 +804,11 @@ static int action_ok_shader_pass_load(const char *path,
|
|||||||
ACTION_OK_LOAD_SHADER_PASS, MENU_LABEL_SHADER_OPTIONS);
|
ACTION_OK_LOAD_SHADER_PASS, MENU_LABEL_SHADER_OPTIONS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int action_ok_cheevos(const char *path,
|
||||||
|
const char *label, unsigned type, size_t idx, size_t entry_idx)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int action_ok_cheat(const char *path,
|
static int action_ok_cheat(const char *path,
|
||||||
const char *label, unsigned type, size_t idx, size_t entry_idx)
|
const char *label, unsigned type, size_t idx, size_t entry_idx)
|
||||||
@ -2097,6 +2102,10 @@ static int menu_cbs_init_bind_ok_compare_type(menu_file_list_cbs_t *cbs,
|
|||||||
{
|
{
|
||||||
BIND_ACTION_OK(cbs, NULL);
|
BIND_ACTION_OK(cbs, NULL);
|
||||||
}
|
}
|
||||||
|
else if ((type >= MENU_SETTINGS_CHEEVOS_START))
|
||||||
|
{
|
||||||
|
BIND_ACTION_OK(cbs, action_ok_cheevos);
|
||||||
|
}
|
||||||
else if (type >= MENU_SETTINGS_CHEAT_BEGIN
|
else if (type >= MENU_SETTINGS_CHEAT_BEGIN
|
||||||
&& type <= MENU_SETTINGS_CHEAT_END)
|
&& type <= MENU_SETTINGS_CHEAT_END)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user