summaryrefslogtreecommitdiff
path: root/libpcsxcore/pgxp_value.h
diff options
context:
space:
mode:
authoriCatButler <i.am.catbutler@gmail.com>2017-04-25 14:58:00 +0100
committeriCatButler <i.am.catbutler@gmail.com>2017-04-25 14:58:00 +0100
commit496df34ee4e3861c6e9b0ee8256d575622447563 (patch)
treee96bad2877501a263f230325839864aadc508cf3 /libpcsxcore/pgxp_value.h
parent5dbb8dd78602f4b9c7d4e1a92b831fac032db8a6 (diff)
downloadpcsxr-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.h1
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;