From 097feb0a554737d6429381b082fae9161dd0cb4b Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sun, 22 Feb 2015 00:18:13 -0800 Subject: [PATCH] GBA Thread: Increase frame timeout --- src/gba/supervisor/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/supervisor/thread.c b/src/gba/supervisor/thread.c index df3c7989d..e3b29627e 100644 --- a/src/gba/supervisor/thread.c +++ b/src/gba/supervisor/thread.c @@ -659,7 +659,7 @@ bool GBASyncWaitFrameStart(struct GBASync* sync, int frameskip) { return false; } if (sync->videoFrameOn) { - if (ConditionWaitTimed(&sync->videoFrameAvailableCond, &sync->videoFrameMutex, 20)) { + if (ConditionWaitTimed(&sync->videoFrameAvailableCond, &sync->videoFrameMutex, 50)) { return false; } }