[quake3-commits] r1878 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Tue Feb 8 15:24:41 EST 2011
Author: thilo
Date: 2011-02-08 15:24:41 -0500 (Tue, 08 Feb 2011)
New Revision: 1878
Modified:
trunk/code/server/sv_client.c
Log:
Still not compiling when STANDALONE is set
Modified: trunk/code/server/sv_client.c
===================================================================
--- trunk/code/server/sv_client.c 2011-02-08 20:21:37 UTC (rev 1877)
+++ trunk/code/server/sv_client.c 2011-02-08 20:24:41 UTC (rev 1878)
@@ -915,11 +915,15 @@
}
else if (idPack) {
Com_Printf("clientDownload: %d : \"%s\" cannot download id pk3 files\n", (int) (cl - svs.clients), cl->downloadName);
- if (missionPack) {
+#ifndef STANDALONE
+ if(missionPack)
+ {
Com_sprintf(errorMessage, sizeof(errorMessage), "Cannot autodownload Team Arena file \"%s\"\n"
"The Team Arena mission pack can be found in your local game store.", cl->downloadName);
}
- else {
+ else
+#endif
+ {
Com_sprintf(errorMessage, sizeof(errorMessage), "Cannot autodownload id pk3 file \"%s\"", cl->downloadName);
}
}
More information about the quake3-commits
mailing list