rend: ignore inside clipping if rect is default value

Fixes invisible race start countdown in f355 (arcade).
Issue #1698
This commit is contained in:
Flyinghead 2024-10-15 15:55:34 +02:00
parent fd475bdd8e
commit 75af269bb8
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ static inline TileClipping GetTileClip(u32 val, const glm::mat4& viewport, int *
csy = csy * 32;
cey = (cey + 1) * 32;
if (csx <= 0 && csy <= 0 && cex >= 640 && cey >= 480 && tileClippingMode == TileClipping::Outside)
if (csx == 0 && csy == 0 && cex >= 640 && cey >= 480)
return TileClipping::Off;
if (!pvrrc.isRTT)