From 8a4dfbf6151bb64c929d6ec7887335dc9d7b1c19 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 15 Jan 2001 07:42:00 +0000 Subject: [PATCH] "Checking ..." messages will now be seen immediately rather than after the next message. --- source/cl_parse.c | 2 ++ source/skin.c | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/source/cl_parse.c b/source/cl_parse.c index 3f3ef7f..8a2c663 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -264,6 +264,7 @@ Model_NextDownload (void) if (cls.downloadnumber == 0) { Con_Printf ("Checking models...\n"); + SCR_UpdateScreen (); cls.downloadnumber = 1; } @@ -328,6 +329,7 @@ Sound_NextDownload (void) if (cls.downloadnumber == 0) { Con_Printf ("Checking sounds...\n"); + SCR_UpdateScreen (); cls.downloadnumber = 1; } diff --git a/source/skin.c b/source/skin.c index dbf11f6..6cf52d2 100644 --- a/source/skin.c +++ b/source/skin.c @@ -43,6 +43,7 @@ #include "msg.h" #include "pcx.h" #include "qendian.h" +#include "screen.h" #include "skin.h" #include "sys.h" #include "va.h" @@ -247,8 +248,10 @@ Skin_NextDownload (void) player_info_t *sc; int i; - if (cls.downloadnumber == 0) + if (cls.downloadnumber == 0) { Con_Printf ("Checking skins...\n"); + SCR_UpdateScreen (); + } cls.downloadtype = dl_skin; for (; cls.downloadnumber != MAX_CLIENTS; cls.downloadnumber++) {