(platform_psp.c) Turn function static

This commit is contained in:
twinaphex 2015-04-09 05:53:58 +02:00
parent c0bd6874cd
commit edda6bac9e

View File

@ -145,7 +145,7 @@ static int exit_callback(int arg1, int arg2, void *common)
return 0;
}
int callback_thread(SceSize args, void *argp)
static int callback_thread(SceSize args, void *argp)
{
int cbid = sceKernelCreateCallback("Exit callback", exit_callback, NULL);
sceKernelRegisterExitCallback(cbid);
@ -184,8 +184,6 @@ static void frontend_psp_init(void *data)
#endif
}
static void frontend_psp_exec(const char *path, bool should_load_game)
{
#if defined(HAVE_KERNEL_PRX) || defined(IS_SALAMANDER)