diff --git a/nq/source/sv_main.c b/nq/source/sv_main.c index d882ad0b2..21e860c94 100644 --- a/nq/source/sv_main.c +++ b/nq/source/sv_main.c @@ -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); diff --git a/nq/source/sys_unix.c b/nq/source/sys_unix.c index a8262400f..3579de273 100644 --- a/nq/source/sys_unix.c +++ b/nq/source/sys_unix.c @@ -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; diff --git a/nq/source/sys_unixd.c b/nq/source/sys_unixd.c index 1aa8bb385..b95b0ad1e 100644 --- a/nq/source/sys_unixd.c +++ b/nq/source/sys_unixd.c @@ -47,6 +47,7 @@ #include #include #include +#include #include "client.h" #include "sys.h"