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