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:
parent
153c576ac7
commit
7e2be93b05
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue