mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 12:32:09 +00:00
Still not compiling when STANDALONE is set
This commit is contained in:
parent
7efcc91265
commit
ba19fe1152
1 changed files with 6 additions and 2 deletions
|
@ -915,11 +915,15 @@ void SV_WriteDownloadToClient( client_t *cl , msg_t *msg )
|
|||
}
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue