1
0
Fork 0

(svn r5487) -Fix: [#8] UDP sockets were used even if network-availability was set to false (tokay)

release/0.5
truelight 2006-07-13 17:53:32 +00:00
parent 954a750902
commit 05c7d42954
1 changed files with 2 additions and 1 deletions

View File

@ -971,7 +971,8 @@ void GameLoop(void)
#ifdef ENABLE_NETWORK
// Check for UDP stuff
NetworkUDPGameLoop();
if (_network_available)
NetworkUDPGameLoop();
if (_networking) {
// Multiplayer