summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2008-10-12 15:45:25 +0000
committerSimon Howard2008-10-12 15:45:25 +0000
commit6f116526d85e09a762ed1a7b295f684926c862ba (patch)
tree2beff98e267aff40360ad73b6ec2043c2a101bb0 /src
parent1901777acea62666bf6007b6ccce6f1f4cdb65dc (diff)
downloadchocolate-doom-6f116526d85e09a762ed1a7b295f684926c862ba.tar.gz
chocolate-doom-6f116526d85e09a762ed1a7b295f684926c862ba.tar.bz2
chocolate-doom-6f116526d85e09a762ed1a7b295f684926c862ba.zip
Don't hog the CPU.
Subversion-branch: /branches/raven-branch Subversion-revision: 1356
Diffstat (limited to 'src')
-rw-r--r--src/hexen/d_net.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hexen/d_net.c b/src/hexen/d_net.c
index d1a7c376..b21573c8 100644
--- a/src/hexen/d_net.c
+++ b/src/hexen/d_net.c
@@ -941,6 +941,9 @@ void TryRunTics(void)
MN_Ticker();
return;
}
+
+ // Don't hog the CPU
+ I_Sleep(1);
}
//