Whoops, switched these for no reason

This commit is contained in:
kaysrishaq 2020-06-08 06:30:01 -04:00
parent cad1f57b1e
commit c74a607c54

View file

@ -2716,9 +2716,9 @@ static void DrawModelEx(model_t *model, INT32 frameIndex, INT32 duration, INT32
{ {
boolean reversecull = (flipped ^ hflipped ^ pos->flip ^ pos->mirror); boolean reversecull = (flipped ^ hflipped ^ pos->flip ^ pos->mirror);
if (reversecull) if (reversecull)
pglCullFace(GL_BACK);
else
pglCullFace(GL_FRONT); pglCullFace(GL_FRONT);
else
pglCullFace(GL_BACK);
} }
#else #else
// pos->flip is if the screen is flipped too // pos->flip is if the screen is flipped too