summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-02-19 20:01:11 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-02-19 20:01:11 +0000
commit0ca3e6e00e831302e34c2d96a1aaf56663c7e1e4 (patch)
tree81f29768cc044b59ca9ad76787196e2231cc090c /amiga
parent3123192dfca6336a0fc90d34dec4269aa329b4d0 (diff)
downloadnetsurf-0ca3e6e00e831302e34c2d96a1aaf56663c7e1e4.tar.gz
netsurf-0ca3e6e00e831302e34c2d96a1aaf56663c7e1e4.tar.bz2
Get one timer message per signal to allow other non-scheduled events to be actioned.
This fixes a curious pause upon starting NetSurf. svn path=/trunk/netsurf/; revision=11713
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 64785d26b..c3d1d8647 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -1900,7 +1900,7 @@ void ami_get_msg(void)
if(signal & schedulesig)
{
- while(timermsg = GetMsg(msgport))
+ if(timermsg = GetMsg(msgport))
{
ReplyMsg(timermsg);
schedule_run(FALSE);