From 1b1ec37f36c30ff17d03f8ea91b54e6cedb248d7 Mon Sep 17 00:00:00 2001 From: radius Date: Sun, 11 Feb 2018 10:04:22 -0500 Subject: [PATCH] subsystem part 3: these can be static again --- command.c | 4 ++-- command.h | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/command.c b/command.c index 1d92f19e78..27ebfdeb72 100644 --- a/command.c +++ b/command.c @@ -1052,7 +1052,7 @@ static void command_event_init_controllers(void) } } -void command_event_deinit_core(bool reinit) +static void command_event_deinit_core(bool reinit) { #ifdef HAVE_CHEEVOS cheevos_unload(); @@ -1205,7 +1205,7 @@ error: free(state_base); } -bool event_init_content(void) +static bool event_init_content(void) { bool contentless = false; bool is_inited = false; diff --git a/command.h b/command.h index eebc622f7c..6b257d1896 100644 --- a/command.h +++ b/command.h @@ -273,8 +273,6 @@ void command_playlist_update_write( const char *label, const char *path); -bool event_init_content(void); -void command_event_deinit_core(bool reinit); RETRO_END_DECLS