commit 2a6a4f36231cccd5b95029ee3f287657031552f5
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Sat Apr 6 00:48:47 2013 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Sat Apr 6 00:48:47 2013 +0000
Don't hog the CPU when waiting for the game to start.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2587
---
src/d_loop.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/d_loop.c b/src/d_loop.c
index 8dad478d..558d16b7 100644
--- a/src/d_loop.c
+++ b/src/d_loop.c
@@ -331,6 +331,8 @@ static void BlockUntilStart(net_gamesettings_t *settings,
{
I_Error("Netgame startup aborted.");
}
+
+ I_Sleep(100);
}
}