Removed moodles' infokey stuff which was totally wrong anyway.
Enabled the prototype warnings. Looks like we need them. Fixed a few warnings other than the prototype ones which I just enabled. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1898 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
9caf98dc48
commit
9620a98dc2
25 changed files with 72 additions and 139 deletions
|
@ -31,6 +31,12 @@ void Mod_LoadQ2BrushModel (model_t *mod, void *buffer);
|
|||
void Mod_LoadAliasModel (model_t *mod, void *buffer);
|
||||
model_t *Mod_LoadModel (model_t *mod, qboolean crash);
|
||||
|
||||
void GL_LoadQ1Model (model_t *mod, void *buffer);
|
||||
void GL_LoadQ2Model (model_t *mod, void *buffer);
|
||||
void GL_LoadQ3Model (model_t *mod, void *buffer);
|
||||
void GLMod_LoadZymoticModel (model_t *mod, void *buffer);
|
||||
void GLMod_LoadDarkPlacesModel(model_t *mod, void *buffer);
|
||||
|
||||
qbyte mod_novis[MAX_MAP_LEAFS/8];
|
||||
|
||||
#define MAX_MOD_KNOWN 512
|
||||
|
@ -301,6 +307,11 @@ model_t *Mod_LoadModel (model_t *mod, qboolean crash)
|
|||
GLMod_LoadZymoticModel(mod, buf);
|
||||
break;
|
||||
#endif
|
||||
#ifdef ZYMOTICMODELS
|
||||
case (('K'<<24)+('R'<<16)+('A'<<8)+'D'):
|
||||
GLMod_LoadDarkPlacesModel(mod, buf);
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
if (crash)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue