From dd9bde218445474e93309070b9e4646f4f776930 Mon Sep 17 00:00:00 2001 From: orbea Date: Thu, 18 Apr 2019 11:15:05 -0700 Subject: [PATCH] Fix font selection. Fixes https://github.com/libretro/RetroArch/issues/8593 --- menu/cbs/menu_cbs_ok.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index a9e2cb6436..1be7a77ada 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -6220,7 +6220,9 @@ static int menu_cbs_init_bind_ok_compare_type(menu_file_list_cbs_t *cbs, case FILE_TYPE_DIRECTORY: if (cbs->enum_idx != MSG_UNKNOWN || menu_label_hash == MENU_LABEL_DISK_IMAGE_APPEND - || menu_label_hash == MENU_LABEL_SUBSYSTEM_ADD) + || menu_label_hash == MENU_LABEL_SUBSYSTEM_ADD + || menu_label_hash == MENU_LABEL_VIDEO_FONT_PATH + || menu_label_hash == MENU_LABEL_XMB_FONT) BIND_ACTION_OK(cbs, action_ok_directory_push); else BIND_ACTION_OK(cbs, action_ok_push_random_dir);