diff options
author | Simon Howard | 2010-05-03 17:07:45 +0000 |
---|---|---|
committer | Simon Howard | 2010-05-03 17:07:45 +0000 |
commit | 4767ddccafca1a1c50bc097284df1328d478882a (patch) | |
tree | 26846694ab4cb35dbea92bf1519dc3a4c9b33c52 /src/doom/d_net.c | |
parent | af48a6309cf1f03b5136e26a5fc27a38e490d808 (diff) | |
parent | aa35a71bd05536f82ce23887f7e84decc7f850a7 (diff) | |
download | chocolate-doom-4767ddccafca1a1c50bc097284df1328d478882a.tar.gz chocolate-doom-4767ddccafca1a1c50bc097284df1328d478882a.tar.bz2 chocolate-doom-4767ddccafca1a1c50bc097284df1328d478882a.zip |
Merge from trunk.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1931
Diffstat (limited to 'src/doom/d_net.c')
-rw-r--r-- | src/doom/d_net.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doom/d_net.c b/src/doom/d_net.c index e30ead83..464922d4 100644 --- a/src/doom/d_net.c +++ b/src/doom/d_net.c @@ -374,17 +374,17 @@ void D_CheckNetGame (void) ++num_players; } - printf (DEH_String("startskill %i deathmatch: %i startmap: %i startepisode: %i\n"), - startskill, deathmatch, startmap, startepisode); + DEH_printf("startskill %i deathmatch: %i startmap: %i startepisode: %i\n", + startskill, deathmatch, startmap, startepisode); - printf(DEH_String("player %i of %i (%i nodes)\n"), - consoleplayer+1, num_players, num_players); + DEH_printf("player %i of %i (%i nodes)\n", + consoleplayer+1, num_players, num_players); // Show players here; the server might have specified a time limit if (timelimit > 0) { - printf(DEH_String("Levels will end after %d minute"),timelimit); + DEH_printf("Levels will end after %d minute", timelimit); if (timelimit > 1) printf("s"); printf(".\n"); |