From e10fb993ff40dc8db2d331c876d0354b21e958bb Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 8 Sep 2016 16:25:40 +0200 Subject: [PATCH] (core_impl.c) Cleanups --- core_impl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core_impl.c b/core_impl.c index d019d0c2df..ba0b74a848 100644 --- a/core_impl.c +++ b/core_impl.c @@ -45,12 +45,12 @@ #include "audio/audio_driver.h" static struct retro_core_t core; -static bool core_inited; -static bool core_symbols_inited; -static bool core_game_loaded; static unsigned core_poll_type; -static bool core_input_polled; -static bool core_has_set_input_descriptors = false; +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 void core_input_state_poll_maybe(void)