mirror of
https://github.com/libretro/RetroArch
synced 2025-02-26 06:40:39 +00:00
(APPLE) Rename rarch_main_apple to rarch_main
This commit is contained in:
parent
1d69559b2e
commit
3977cec315
@ -45,7 +45,7 @@ static bool use_tv_mode;
|
||||
id<RetroArch_Platform> apple_platform;
|
||||
|
||||
// From frontend/frontend_ios.c
|
||||
extern void* rarch_main_apple(void* args);
|
||||
extern void* rarch_main(void* args);
|
||||
extern void apple_frontend_post_event(void (*fn)(void*), void* userdata);
|
||||
|
||||
|
||||
@ -114,7 +114,7 @@ void apple_run_core(RAModuleInfo* core, const char* file)
|
||||
load_data->rom_path = strdup(file);
|
||||
}
|
||||
|
||||
if (pthread_create(&apple_retro_thread, 0, rarch_main_apple, load_data))
|
||||
if (pthread_create(&apple_retro_thread, 0, rarch_main, load_data))
|
||||
{
|
||||
apple_rarch_exited((void*)1);
|
||||
return;
|
||||
|
@ -253,7 +253,7 @@ static void process_events(void)
|
||||
pthread_mutex_unlock(&apple_event_queue_lock);
|
||||
}
|
||||
|
||||
void* rarch_main_apple(void* args)
|
||||
void* rarch_main(void* args)
|
||||
#else
|
||||
int rarch_main(int argc, char *argv[])
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user