From 0434c907c4ba39e7ad9c3e7efecd0086383f284a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 27 Jan 2016 04:51:47 +0100 Subject: [PATCH] Replace another reference to retro_ctx --- runloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runloop.c b/runloop.c index ac1e7e89db..dfb2d4ce66 100644 --- a/runloop.c +++ b/runloop.c @@ -1388,7 +1388,7 @@ int runloop_iterate(unsigned *sleep_ms) if (!runloop_ctl(RUNLOOP_CTL_CHECK_STATE, &cmd)) { /* RetroArch has been paused. */ - retro_ctx.poll_cb(); + core_ctl(CORE_CTL_RETRO_CTX_POLL_CB, NULL); *sleep_ms = 10; return 1; }