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.h | |
| 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.h')
| -rw-r--r-- | libpcsxcore/pgxp_value.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpcsxcore/pgxp_value.h b/libpcsxcore/pgxp_value.h index 68809fa2..a7ba1f3b 100644 --- a/libpcsxcore/pgxp_value.h +++ b/libpcsxcore/pgxp_value.h @@ -91,6 +91,7 @@ typedef enum #define VALID_2 (VALID << 16) #define VALID_3 (VALID << 24) #define VALID_01 (VALID_0 | VALID_1) +#define VALID_012 (VALID_0 | VALID_1 | VALID_2) #define VALID_ALL (VALID_0 | VALID_1 | VALID_2 | VALID_3) #define INV_VALID_ALL (ALL ^ VALID_ALL) //} PGXP_value_flags; |
