summaryrefslogtreecommitdiff
path: root/src/d_loop.c
diff options
context:
space:
mode:
authorSimon Howard2014-10-08 00:42:57 -0400
committerSimon Howard2014-10-08 00:42:57 -0400
commit16eb65970747541102beb0b8343b158a740c75d0 (patch)
treea3c892adc3b0f139539923c3fc616f38c2810b64 /src/d_loop.c
parent73bbc8ce51d9f67246c251141950c4611c85baba (diff)
downloadchocolate-doom-16eb65970747541102beb0b8343b158a740c75d0.tar.gz
chocolate-doom-16eb65970747541102beb0b8343b158a740c75d0.tar.bz2
chocolate-doom-16eb65970747541102beb0b8343b158a740c75d0.zip
Disable -oldsync startup message.
A message is printed if you are playing a game using the old sync code, which could put you at a disadvantage compared to other players. Disable this message for now as we're defaulting to old sync for the time being.
Diffstat (limited to 'src/d_loop.c')
-rw-r--r--src/d_loop.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/d_loop.c b/src/d_loop.c
index 7d034485..e7be7b30 100644
--- a/src/d_loop.c
+++ b/src/d_loop.c
@@ -427,10 +427,11 @@ void D_StartNetGame(net_gamesettings_t *settings,
ticdup = settings->ticdup;
new_sync = settings->new_sync;
- if (!new_sync)
- {
- printf("Syncing netgames like Vanilla Doom.\n");
- }
+ // TODO: Message disabled until we fix new_sync.
+ //if (!new_sync)
+ //{
+ // printf("Syncing netgames like Vanilla Doom.\n");
+ //}
}
boolean D_InitNetGame(net_connect_data_t *connect_data)