diff --git a/frontend/menu/disp/rmenu.c b/frontend/menu/disp/rmenu.c index dd1aed5cac..d048925777 100644 --- a/frontend/menu/disp/rmenu.c +++ b/frontend/menu/disp/rmenu.c @@ -166,6 +166,8 @@ static void rmenu_render(void *data) strlcpy(title, "OVERLAY OPTIONS", sizeof(title)); else if (menu_type == RGUI_SETTINGS_NETPLAY_OPTIONS) strlcpy(title, "NETPLAY OPTIONS", sizeof(title)); + else if (menu_type == RGUI_SETTINGS_FONT_OPTIONS) + strlcpy(title, "FONT OPTIONS", sizeof(title)); else if (menu_type == RGUI_SETTINGS_GENERAL_OPTIONS) strlcpy(title, "GENERAL OPTIONS", sizeof(title)); else if (menu_type == RGUI_SETTINGS_PATH_OPTIONS) diff --git a/frontend/menu/disp/rmenu_xui.cpp b/frontend/menu/disp/rmenu_xui.cpp index ea5504a627..e25124e4af 100644 --- a/frontend/menu/disp/rmenu_xui.cpp +++ b/frontend/menu/disp/rmenu_xui.cpp @@ -423,6 +423,8 @@ static void rmenu_xui_render(void *data) else if (menu_type == RGUI_SETTINGS_SHADER_OPTIONS) strlcpy(title, "SHADER OPTIONS", sizeof(title)); #endif + else if (menu_type == RGUI_SETTINGS_FONT_OPTIONS) + strlcpy(title, "FONT OPTIONS", sizeof(title)); else if (menu_type == RGUI_SETTINGS_GENERAL_OPTIONS) strlcpy(title, "GENERAL OPTIONS", sizeof(title)); else if (menu_type == RGUI_SETTINGS_AUDIO_OPTIONS)