Fix a compile error on dedicated builds.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1525 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-10-21 15:52:05 +00:00
parent 153c576ac7
commit 7e2be93b05
1 changed files with 4 additions and 0 deletions

View File

@ -3641,7 +3641,11 @@ q2cmodel_t *CM_LoadMap (char *name, char *filein, qboolean clientload, unsigned
break;
default:
#ifdef SERVERONLY
SV_Error("Cannot load q3bsps with the current renderer (only dedicated and opengl renderer)\n");
#else
Host_EndGame("Cannot load q3bsps with the current renderer (only dedicated and opengl renderer)\n");
#endif
}
break;
#endif