mirror of
https://github.com/libretro/RetroArch
synced 2025-01-27 21:35:25 +00:00
Turn content_load function static
This commit is contained in:
parent
722eb5a69c
commit
6305f12ba2
@ -59,11 +59,6 @@ bool content_load_state(const char *path);
|
||||
/* Save a state from memory to disk. */
|
||||
bool content_save_state(const char *path);
|
||||
|
||||
/* Loads content file and starts up RetroArch.
|
||||
* If no content file can be loaded, will start up RetroArch
|
||||
* as-is. */
|
||||
bool content_load(content_ctx_info_t *info);
|
||||
|
||||
bool content_does_not_need_content(void);
|
||||
|
||||
void content_set_does_not_need_content(void);
|
||||
|
@ -884,7 +884,7 @@ static void content_load_init_wrap(
|
||||
* Returns: false (0) if retroarch_main_init failed,
|
||||
* otherwise true (1).
|
||||
**/
|
||||
bool content_load(content_ctx_info_t *info)
|
||||
static bool content_load(content_ctx_info_t *info)
|
||||
{
|
||||
unsigned i;
|
||||
bool retval = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user