From b36f823d7369ae86c1c3ea4bb49d6aa88aed5810 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 23 Jan 2017 02:49:00 +0100 Subject: [PATCH] Remove unused RUNLOOP_CTL_IS_SLOWMOTION --- runloop.c | 2 -- runloop.h | 1 - 2 files changed, 3 deletions(-) diff --git a/runloop.c b/runloop.c index f23fcaf096..590e4b3a8d 100644 --- a/runloop.c +++ b/runloop.c @@ -437,8 +437,6 @@ bool runloop_ctl(enum runloop_ctl_state state, void *data) runloop_idle = *ptr; } break; - case RUNLOOP_CTL_IS_SLOWMOTION: - return runloop_slowmotion; case RUNLOOP_CTL_SET_SLOWMOTION: { bool *ptr = (bool*)data; diff --git a/runloop.h b/runloop.h index 7e1bebbec1..bca1433f45 100644 --- a/runloop.h +++ b/runloop.h @@ -61,7 +61,6 @@ enum runloop_ctl_state RUNLOOP_CTL_SET_LIBRETRO_PATH, - RUNLOOP_CTL_IS_SLOWMOTION, RUNLOOP_CTL_SET_SLOWMOTION, RUNLOOP_CTL_IS_PAUSED,