mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Change interpretation of iteration return
This commit is contained in:
parent
7950de0460
commit
0adcd2df76
@ -36,7 +36,7 @@ static void do_iteration(void)
|
||||
return;
|
||||
}
|
||||
|
||||
if (ret)
|
||||
if (ret == 0)
|
||||
CFRunLoopWakeUp(CFRunLoopGetMain());
|
||||
|
||||
/* TODO/FIXME
|
||||
|
@ -3220,8 +3220,8 @@ static inline int time_to_exit(retro_input_t input)
|
||||
}
|
||||
|
||||
/* Returns:
|
||||
* 0 - Successful iteration.
|
||||
* 1 - Forcibly wake up the loop.
|
||||
* 0 - Forcibly wake up the loop.
|
||||
* 1 - Wait until input to wake up the loop
|
||||
* -1 - Quit out of iteration loop.
|
||||
*/
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user