Add DATA_TYPE_DB to main_message_queue_push

This commit is contained in:
twinaphex 2015-05-23 18:03:30 +02:00
parent a2e15cb4f5
commit c4d72672a2

View File

@ -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
}