mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 23:25:41 +00:00
GPU: Fix dithering enable check for non-textured polygons
Fixes screen fade out effects in Final Fantasy VIII.
This commit is contained in:
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…
Reference in a new issue