Fixed fisheye, should compile now

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3324 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Lance 2009-07-20 02:50:00 +00:00
parent cdf2b2670e
commit 233ffe7ccd

View file

@ -2105,12 +2105,15 @@ void GLR_RenderView (void)
c_alias_polys = 0; c_alias_polys = 0;
} }
#ifdef FISH
if (ffov.value && cls.allow_fish && !(r_refdef.flags & Q2RDF_NOWORLDMODEL) && R_RenderScene_Fish()) if (ffov.value && cls.allow_fish && !(r_refdef.flags & Q2RDF_NOWORLDMODEL) && R_RenderScene_Fish())
{ {
//fisheye does its own rendering. //fisheye does its own rendering.
} }
else else
{ {
#endif
mirror = false; mirror = false;
R_Clear (); R_Clear ();
@ -2129,7 +2132,9 @@ void GLR_RenderView (void)
// render mirror view // render mirror view
R_Mirror (); R_Mirror ();
#ifdef FISH
} }
#endif
R_BloomBlend(); R_BloomBlend();