mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-24 03:02:31 +00:00
bring Mercury's changes back in
This commit is contained in:
parent
e3b7ab218e
commit
c83f38d8bf
3 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
#include <sys/wait.h>
|
||||
#include <sys/mman.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "client.h"
|
||||
#include "sys.h"
|
||||
|
|
Loading…
Reference in a new issue