Fixed a cvar related segfault..

This commit is contained in:
Zephaniah E. Hull 2000-03-05 00:56:25 +00:00
parent d5e09cf5ef
commit bdac743c66
2 changed files with 1 additions and 3 deletions

View file

@ -232,9 +232,7 @@ void R_Init (void)
R_InitBubble();
#ifdef UQUAKE
gl_doubleeyes = Cvar_Get ("gl_doubleeyes","1",CVAR_ARCHIVE,"None");
#endif /* UQUAKE */
R_InitParticles ();
R_InitParticleTexture ();

View file

@ -126,6 +126,6 @@ byte *LoadPCX (char *file, cache_user_t *cache, int buf_x, int buf_y) {
return NULL;
}
return NULL;
return out;
}