mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 11:51:17 +00:00
Fixed a cvar related segfault..
This commit is contained in:
parent
d5e09cf5ef
commit
bdac743c66
2 changed files with 1 additions and 3 deletions
|
@ -232,9 +232,7 @@ void R_Init (void)
|
||||||
|
|
||||||
R_InitBubble();
|
R_InitBubble();
|
||||||
|
|
||||||
#ifdef UQUAKE
|
|
||||||
gl_doubleeyes = Cvar_Get ("gl_doubleeyes","1",CVAR_ARCHIVE,"None");
|
gl_doubleeyes = Cvar_Get ("gl_doubleeyes","1",CVAR_ARCHIVE,"None");
|
||||||
#endif /* UQUAKE */
|
|
||||||
|
|
||||||
R_InitParticles ();
|
R_InitParticles ();
|
||||||
R_InitParticleTexture ();
|
R_InitParticleTexture ();
|
||||||
|
|
|
@ -126,6 +126,6 @@ byte *LoadPCX (char *file, cache_user_t *cache, int buf_x, int buf_y) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue