mirror of
https://github.com/libretro/RetroArch
synced 2025-03-25 16:44:01 +00:00
(OSX/iOS) Rename do_iteration to rarch_main
This commit is contained in:
parent
0f867ce0dc
commit
33d11fc4d1
@ -197,7 +197,7 @@ static char** waiting_argv;
|
|||||||
}while(event != nil);
|
}while(event != nil);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) do_iteration
|
- (void) rarch_main
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
while (ret != -1)
|
while (ret != -1)
|
||||||
@ -212,7 +212,7 @@ static char** waiting_argv;
|
|||||||
|
|
||||||
- (void) apple_start_iteration
|
- (void) apple_start_iteration
|
||||||
{
|
{
|
||||||
[self performSelectorOnMainThread:@selector(do_iteration) withObject:nil waitUntilDone:NO];
|
[self performSelectorOnMainThread:@selector(rarch_main) withObject:nil waitUntilDone:NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) apple_stop_iteration
|
- (void) apple_stop_iteration
|
||||||
|
@ -273,7 +273,7 @@ void notify_content_loaded(void)
|
|||||||
[self apple_start_iteration];
|
[self apple_start_iteration];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) do_iteration
|
- (void) rarch_main
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
while (ret != -1)
|
while (ret != -1)
|
||||||
@ -287,7 +287,7 @@ void notify_content_loaded(void)
|
|||||||
|
|
||||||
- (void) apple_start_iteration
|
- (void) apple_start_iteration
|
||||||
{
|
{
|
||||||
[self performSelectorOnMainThread:@selector(do_iteration) withObject:nil waitUntilDone:NO];
|
[self performSelectorOnMainThread:@selector(rarch_main) withObject:nil waitUntilDone:NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) apple_stop_iteration
|
- (void) apple_stop_iteration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user