(OSX/iOS) Rename do_iteration to rarch_main

This commit is contained in:
Twinaphex 2015-03-10 17:11:14 +01:00
parent 0f867ce0dc
commit 33d11fc4d1
2 changed files with 4 additions and 4 deletions

View File

@ -197,7 +197,7 @@ static char** waiting_argv;
}while(event != nil);
}
- (void) do_iteration
- (void) rarch_main
{
int ret = 0;
while (ret != -1)
@ -212,7 +212,7 @@ static char** waiting_argv;
- (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

View File

@ -273,7 +273,7 @@ void notify_content_loaded(void)
[self apple_start_iteration];
}
- (void) do_iteration
- (void) rarch_main
{
int ret = 0;
while (ret != -1)
@ -287,7 +287,7 @@ void notify_content_loaded(void)
- (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