From 18f1a966e98bab0f5c0c1248b2607f45e5956802 Mon Sep 17 00:00:00 2001 From: stpohle Date: Tue, 10 Jun 2003 21:23:18 +0000 Subject: [PATCH] Data Download Screen Font fixed --- src/network.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/network.c b/src/network.c index 0b1d7b9..37a191c 100644 --- a/src/network.c +++ b/src/network.c @@ -1,4 +1,4 @@ -/* $Id: network.c,v 1.30 2003/06/06 23:22:03 stpohle Exp $ */ +/* $Id: network.c,v 1.31 2003/06/10 21:23:18 stpohle Exp $ */ /* network routines. */ @@ -337,7 +337,7 @@ draw_netupdatestate () sprintf (text, "%s - State : READY", bman.players[i].name); else sprintf (text, "%s - State : DOWNLOAD", bman.players[i].name); - font_draw (70, y, text, 1); + font_draw (70, y, text, 0); text[0] = 0; if (bman.players[i].net.net_istep == 2) @@ -348,7 +348,7 @@ draw_netupdatestate () sprintf (text, "Getting Player Data %d of %d.", bman.players[i].net.net_status, MAX_PLAYERS); - font_draw (70, y + 32, text, 1); + font_draw (70, y + 32, text, 0); } return; }