all repos — mgba @ 097feb0a554737d6429381b082fae9161dd0cb4b

mGBA Game Boy Advance Emulator

GBA Thread: Increase frame timeout
Jeffrey Pfau jeffrey@endrift.com
Sun, 22 Feb 2015 00:18:13 -0800
commit

097feb0a554737d6429381b082fae9161dd0cb4b

parent

09f8c4977b168af18020388b0c40b472446a797d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/gba/supervisor/thread.csrc/gba/supervisor/thread.c

@@ -659,7 +659,7 @@ if (!sync->videoFrameOn && !sync->videoFramePending) {

return false; } if (sync->videoFrameOn) { - if (ConditionWaitTimed(&sync->videoFrameAvailableCond, &sync->videoFrameMutex, 20)) { + if (ConditionWaitTimed(&sync->videoFrameAvailableCond, &sync->videoFrameMutex, 50)) { return false; } }