bring Mercury's changes back in

This commit is contained in:
Bill Currie 2001-02-20 04:57:07 +00:00
parent e3b7ab218e
commit c83f38d8bf
3 changed files with 3 additions and 2 deletions

View file

@ -198,7 +198,7 @@ void SV_SendServerinfo (client_t *client)
char message[2048];
MSG_WriteByte (&client->message, svc_print);
snprintf (message, sizeof(message), "%c\nVersion %s server (%i CRC)", 2, QUAKE_VERSION, pr_crc);
snprintf (message, sizeof(message), "%c\nVersion %s server (%i CRC)", 2, NQ_VERSION, pr_crc);
MSG_WriteString (&client->message,message);
MSG_WriteByte (&client->message, svc_serverinfo);

View file

@ -449,7 +449,7 @@ int main (int c, char **v)
nostdout = 1;
else {
fcntl(0, F_SETFL, fcntl (0, F_GETFL, 0) | FNDELAY);
printf ("Quake -- Version %s\n", QUAKE_VERSION);
printf ("Quake -- Version %s\n", NQ_VERSION);
}
oldtime = Sys_DoubleTime () - 0.1;

View file

@ -47,6 +47,7 @@
#include <sys/wait.h>
#include <sys/mman.h>
#include <errno.h>
#include <time.h>
#include "client.h"
#include "sys.h"