GPU: Fix dithering enable check for non-textured polygons

Fixes screen fade out effects in Final Fantasy VIII.
pull/474/head
Connor McLaughlin 6 years ago
parent e34b78ab80
commit 6e6c11f8bf

@ -239,7 +239,7 @@ protected:
switch (primitive) switch (primitive)
{ {
case Primitive::Polygon: case Primitive::Polygon:
return shading_enable || !raw_texture_enable; return shading_enable || (texture_enable && !raw_texture_enable);
case Primitive::Line: case Primitive::Line:
return true; return true;

Loading…
Cancel
Save