Delete unused runloop_msg_queue_pull

This commit is contained in:
twinaphex 2016-12-07 08:27:06 +01:00
parent e32d93d886
commit 4971fc53b5
2 changed files with 0 additions and 10 deletions

View File

@ -174,14 +174,6 @@ void runloop_msg_queue_push(const char *msg,
#endif
}
char* runloop_msg_queue_pull(void)
{
runloop_ctx_msg_info_t msg_info;
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_PULL, &msg_info);
return strdup(msg_info.msg);
}
#ifdef HAVE_MENU
static bool runloop_cmd_get_state_menu_toggle_button_combo(
settings_t *settings,

View File

@ -219,8 +219,6 @@ int runloop_iterate(unsigned *sleep_ms);
void runloop_msg_queue_push(const char *msg, unsigned prio,
unsigned duration, bool flush);
char* runloop_msg_queue_pull(void);
bool runloop_ctl(enum runloop_ctl_state state, void *data);
RETRO_END_DECLS