From 08c57063fd56d3aa1fb904acc505571d74b3d0a4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 19 Jul 2016 19:05:44 +0200 Subject: [PATCH] Attempt to raise priority of SET_MESSAGE message when placed on the message queue --- dynamic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic.c b/dynamic.c index dc6a9893e5..807a18bfe9 100644 --- a/dynamic.c +++ b/dynamic.c @@ -834,7 +834,7 @@ bool rarch_environment_cb(unsigned cmd, void *data) { const struct retro_message *msg = (const struct retro_message*)data; RARCH_LOG("Environ SET_MESSAGE: %s\n", msg->msg); - runloop_msg_queue_push(msg->msg, 1, msg->frames, true); + runloop_msg_queue_push(msg->msg, 3, msg->frames, true); break; }