shithub: choc

Download patch

ref: 16eb65970747541102beb0b8343b158a740c75d0
parent: 73bbc8ce51d9f67246c251141950c4611c85baba
author: Simon Howard <fraggle@gmail.com>
date: Tue Oct 7 20:42:57 EDT 2014

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.

--- a/src/d_loop.c
+++ b/src/d_loop.c
@@ -427,10 +427,11 @@
     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)