Fixed: Bad check for scissor

This commit is contained in:
kervala 2011-01-07 10:05:08 +01:00
parent 2cfc682c9e
commit da96c2c7a7

View file

@ -1097,7 +1097,7 @@ void CDriverGL::setupScissor (const class CScissor& scissor)
} }
// enable or disable Scissor, but AFTER textureTarget adjust // enable or disable Scissor, but AFTER textureTarget adjust
if(x==0 && x==0 && width>=1 && height>=1) if(x==0.f && y==0.f && width>=1.f && height>=1.f)
{ {
glDisable(GL_SCISSOR_TEST); glDisable(GL_SCISSOR_TEST);
} }