mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 12:39:54 +00:00
Merge pull request #1089 from jeapostrophe/master
Change interpretation of iteration return
This commit is contained in:
commit
56863254f3
@ -36,7 +36,7 @@ static void do_iteration(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret)
|
if (ret == 0)
|
||||||
CFRunLoopWakeUp(CFRunLoopGetMain());
|
CFRunLoopWakeUp(CFRunLoopGetMain());
|
||||||
|
|
||||||
/* TODO/FIXME
|
/* TODO/FIXME
|
||||||
|
@ -3220,8 +3220,8 @@ static inline int time_to_exit(retro_input_t input)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Returns:
|
/* Returns:
|
||||||
* 0 - Successful iteration.
|
* 0 - Forcibly wake up the loop.
|
||||||
* 1 - Forcibly wake up the loop.
|
* 1 - Wait until input to wake up the loop
|
||||||
* -1 - Quit out of iteration loop.
|
* -1 - Quit out of iteration loop.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user