mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-20 09:34:09 +00:00
workaround to disable OSD fonts without restarting
This commit is contained in:
parent
4345320c85
commit
0e69f5bcb0
@ -72,6 +72,7 @@ static void frontend_psp_get_environment_settings(int *argc, char *argv[],
|
||||
void *args, void *params_data)
|
||||
{
|
||||
struct rarch_main_wrap *params = NULL;
|
||||
char buf[PATH_MAX_LENGTH] = {0};
|
||||
|
||||
(void)args;
|
||||
|
||||
|
@ -62,6 +62,10 @@ void rarch_main_msg_queue_push_new(uint32_t hash, unsigned prio, unsigned durati
|
||||
void rarch_main_msg_queue_push(const char *msg, unsigned prio, unsigned duration,
|
||||
bool flush)
|
||||
{
|
||||
settings_t *settings;
|
||||
settings = config_get_ptr();
|
||||
if(!settings->video.font_enable)
|
||||
return;
|
||||
if (!g_msg_queue)
|
||||
return;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user