Code cleanup: fix confusing line of code with useless ||.

This commit is contained in:
Brecht Van Lommel 2013-05-14 10:20:58 +00:00
parent cfbf9c324b
commit 71d53203fa

@ -231,7 +231,7 @@ static bool set_draw_settings_cached(int clearcache, MTFace *texface, Material *
static int c_has_texface;
Object *litob = NULL; /* to get mode to turn off mipmap in painting mode */
int backculled = GEMAT_BACKCULL || gtexdraw.use_backface_culling;
int backculled = 1;
int alphablend = 0;
int textured = 0;
int lit = 0;