mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
softgpu: Fix typo in TransformUnit.
This commit is contained in:
parent
e2ac7cab92
commit
4c720ee375
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ static inline ScreenCoords ClipToScreenInternal(const ClipCoords& coords, bool s
|
|||
retz = 65535.f;
|
||||
}
|
||||
|
||||
if (set_flag && (retx > 4095.9375f || rety > 4096.9375f || retx < 0 || rety < 0 || retz < 0 || retz > 65535.f))
|
||||
if (set_flag && (retx > 4095.9375f || rety > 4095.9375f || retx < 0 || rety < 0 || retz < 0 || retz > 65535.f))
|
||||
outside_range_flag = true;
|
||||
|
||||
// 16 = 0xFFFF / 4095.9375
|
||||
|
|
Loading…
Add table
Reference in a new issue