(RGUI) rguidisp.c - change function signature for render_text
This commit is contained in:
parent
22ea71a4ad
commit
adda68219d
|
@ -204,8 +204,10 @@ static void render_messagebox(rgui_handle_t *rgui, const char *message)
|
||||||
string_list_free(list);
|
string_list_free(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void render_text(rgui_handle_t *rgui)
|
static void render_text(void *data)
|
||||||
{
|
{
|
||||||
|
rgui_handle_t *rgui = (rgui_handle_t*)data;
|
||||||
|
|
||||||
if (rgui->need_refresh &&
|
if (rgui->need_refresh &&
|
||||||
(g_extern.lifecycle_mode_state & (1ULL << MODE_MENU))
|
(g_extern.lifecycle_mode_state & (1ULL << MODE_MENU))
|
||||||
&& !rgui->msg_force)
|
&& !rgui->msg_force)
|
||||||
|
|
Loading…
Reference in New Issue