From 9a263b98fffb6fb12950c13a88a576c36353525f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 9 Jan 2017 02:04:47 +0100 Subject: [PATCH] (core_impl.c) Remove some header includes --- core_impl.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/core_impl.c b/core_impl.c index 68a5c9aef5..3dd5148d91 100644 --- a/core_impl.c +++ b/core_impl.c @@ -22,7 +22,6 @@ #include #include -#include #include #include #include @@ -46,15 +45,16 @@ #include "audio/audio_driver.h" #include "cheevos.h" -static struct retro_core_t core; -static unsigned core_poll_type; -static bool core_inited = false; -static bool core_symbols_inited = false; -static bool core_game_loaded = false; -static bool core_input_polled = false; -static bool core_has_set_input_descriptors = false; -static struct retro_callbacks retro_ctx; -static uint64_t core_serialization_quirks_v = 0; +static unsigned core_poll_type = POLL_TYPE_EARLY; +static bool core_inited = false; +static bool core_symbols_inited = false; +static bool core_game_loaded = false; +static bool core_input_polled = false; +static bool core_has_set_input_descriptors = false; +static uint64_t core_serialization_quirks_v = 0; + +static struct retro_callbacks retro_ctx; +static struct retro_core_t core; static void core_input_state_poll_maybe(void) {