Print OVERLAY in menu when selecting one.

This commit is contained in:
Themaister 2013-05-18 00:14:11 +02:00
parent 44449a0ae6
commit 1a01c2b54a

View File

@ -438,6 +438,10 @@ static void render_text(rgui_handle_t *rgui)
snprintf(title, sizeof(title), "MENU %s", dir);
else if (menu_type == RGUI_SETTINGS_OPEN_HISTORY)
strlcpy(title, "LOAD HISTORY", sizeof(title));
#ifdef HAVE_OVERLAY
else if (menu_type == RGUI_SETTINGS_OVERLAY_PRESET)
snprintf(title, sizeof(title), "OVERLAY %s", dir);
#endif
else
{
const char *core_name = rgui->info.library_name;