Fixed: Bad check for scissor

This commit is contained in:
kervala 2011-01-07 10:05:08 +01:00
parent 280df412a6
commit aa8b8851f0

View file

@ -1097,7 +1097,7 @@ void CDriverGL::setupScissor (const class CScissor& scissor)
}
// 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);
}