mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 16:13:40 +00:00
(XUI) More build fixes
This commit is contained in:
parent
57a9174c5d
commit
88b86af892
@ -582,10 +582,10 @@ static void rmenu_xui_render(void)
|
|||||||
end = menu_entries_get_end();
|
end = menu_entries_get_end();
|
||||||
for (i = 0; i < end; i++)
|
for (i = 0; i < end; i++)
|
||||||
{
|
{
|
||||||
char entry_path[PATH_MAX_LENGTH] = {0};
|
char entry_path[PATH_MAX_LENGTH] = {0};
|
||||||
char entry_value[PATH_MAX_LENGTH] = {0};
|
char entry_value[PATH_MAX_LENGTH] = {0};
|
||||||
char msg_right[PATH_MAX_LENGTH] = {0};
|
wchar_t msg_right[PATH_MAX_LENGTH] = {0};
|
||||||
wchar_t msg_left[PATH_MAX_LENGTH] = {0};
|
wchar_t msg_left[PATH_MAX_LENGTH] = {0};
|
||||||
|
|
||||||
menu_entry_get_value(i, entry_value, sizeof(entry_value));
|
menu_entry_get_value(i, entry_value, sizeof(entry_value));
|
||||||
menu_entry_get_path(i, entry_path, sizeof(entry_path));
|
menu_entry_get_path(i, entry_path, sizeof(entry_path));
|
||||||
@ -609,7 +609,7 @@ static void rmenu_xui_render(void)
|
|||||||
|
|
||||||
if (!str)
|
if (!str)
|
||||||
str = "";
|
str = "";
|
||||||
snprintf(msg, sizeof(msg), "%s\n%s", menu->keyboard.label, str);
|
snprintf(msg, sizeof(msg), "%s\n%s", label, str);
|
||||||
rmenu_xui_render_messagebox(msg);
|
rmenu_xui_render_messagebox(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user