mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
oga_gfx: fix messages from not disappearing
This commit is contained in:
parent
5ff75cab0f
commit
71cbec9252
@ -452,6 +452,9 @@ static bool render_msg(oga_video_t* vid, const char* msg)
|
||||
int dest_y = 0;
|
||||
int dest_stride;
|
||||
|
||||
if (msg[0] == '\0')
|
||||
return false;
|
||||
|
||||
if (strcmp(msg, vid->last_msg) == 0)
|
||||
return true;
|
||||
|
||||
@ -567,7 +570,7 @@ static bool oga_gfx_frame(void *data, const void *frame, unsigned width,
|
||||
return true;
|
||||
}
|
||||
|
||||
if (msg && msg[0] && vid->font)
|
||||
if (msg && vid->font)
|
||||
{
|
||||
if (!render_msg(vid, msg))
|
||||
msg = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user