From fe567952057e820b040371be639842fcb2317bf2 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 22 Nov 2014 14:18:00 +0000 Subject: Revert "Should be a while loop in case of multiple simultaneous event triggers." This reverts commit 9dcf001a0bf6d09864783125390e20c8eb53c12f. For ehatever reason this is entirely broken, but I'm in the process of rewriting so just revert for now to get the working builds again. --- amiga/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga') diff --git a/amiga/gui.c b/amiga/gui.c index f933ee4c6..e76a01e66 100644 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -2743,9 +2743,9 @@ void ami_get_msg(void) } if(signal & schedulesig) { - while((timermsg = (struct TimerRequest *)GetMsg(msgport))) { - schedule_run(); + if((timermsg = (struct TimerRequest *)GetMsg(msgport))) { ReplyMsg((struct Message *)timermsg); + schedule_run(); } } -- cgit v1.2.3