From 21901b2dd5107de9e9400ce3341f00f9492dc214 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 25 Feb 2014 16:44:09 +0100 Subject: [PATCH] (RGUI) Fix labels for submenus --- frontend/menu/disp/rgui.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/menu/disp/rgui.c b/frontend/menu/disp/rgui.c index 822396a8e8..d01e6911c6 100644 --- a/frontend/menu/disp/rgui.c +++ b/frontend/menu/disp/rgui.c @@ -296,6 +296,14 @@ static void rgui_render(void *data) snprintf(title, sizeof(title), "DISK APPEND %s", dir); else if (menu_type == RGUI_SETTINGS_VIDEO_OPTIONS) strlcpy(title, "VIDEO OPTIONS", sizeof(title)); + else if (menu_type == RGUI_SETTINGS_INPUT_OPTIONS) + strlcpy(title, "INPUT OPTIONS", sizeof(title)); + else if (menu_type == RGUI_SETTINGS_OVERLAY_OPTIONS) + strlcpy(title, "OVERLAY OPTIONS", sizeof(title)); + else if (menu_type == RGUI_SETTINGS_PATH_OPTIONS) + strlcpy(title, "PATH OPTIONS", sizeof(title)); + else if (menu_type == RGUI_SETTINGS_OPTIONS) + strlcpy(title, "SETTINGS", sizeof(title)); else if (menu_type == RGUI_SETTINGS_DRIVERS) strlcpy(title, "DRIVER OPTIONS", sizeof(title)); #ifdef HAVE_SHADER_MANAGER