diff options
| author | iCatButler <i.am.catbutler@gmail.com> | 2017-04-25 14:58:00 +0100 |
|---|---|---|
| committer | iCatButler <i.am.catbutler@gmail.com> | 2017-04-25 14:58:00 +0100 |
| commit | 496df34ee4e3861c6e9b0ee8256d575622447563 (patch) | |
| tree | e96bad2877501a263f230325839864aadc508cf3 /libpcsxcore/pgxp_value.c | |
| parent | 5dbb8dd78602f4b9c7d4e1a92b831fac032db8a6 (diff) | |
| download | pcsxr-496df34ee4e3861c6e9b0ee8256d575622447563.tar.gz | |
Prevent incomplete vertices using precise NCLIP
- Fixes errors ocurring in +CPU mode where NCLIP is used for collision detection
Diffstat (limited to 'libpcsxcore/pgxp_value.c')
| -rw-r--r-- | libpcsxcore/pgxp_value.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/pgxp_value.c b/libpcsxcore/pgxp_value.c index c52a8999..1ef79498 100644 --- a/libpcsxcore/pgxp_value.c +++ b/libpcsxcore/pgxp_value.c @@ -22,7 +22,7 @@ void MakeValid(PGXP_value *pV, u32 psxV) pV->x = psx.sw.l; pV->y = psx.sw.h; pV->z = 0.f; - pV->flags |= VALID_01; + pV->flags = VALID_01; pV->value = psx.d; } } |
