From c4d72672a2311a3d6abfe9ec3d6cd5e249d9a359 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 23 May 2015 18:03:30 +0200 Subject: [PATCH] Add DATA_TYPE_DB to main_message_queue_push --- runloop_data.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/runloop_data.c b/runloop_data.c index 866b4251da..a61eabd06e 100644 --- a/runloop_data.c +++ b/runloop_data.c @@ -357,6 +357,12 @@ void rarch_main_data_msg_queue_push(unsigned type, case DATA_TYPE_OVERLAY: snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2); break; +#endif +#ifdef HAVE_LIBRETRODB + case DATA_TYPE_DB: + queue = runloop->db.msg_queue; + snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2); + break; #endif }