From 496df34ee4e3861c6e9b0ee8256d575622447563 Mon Sep 17 00:00:00 2001 From: iCatButler Date: Tue, 25 Apr 2017 14:58:00 +0100 Subject: Prevent incomplete vertices using precise NCLIP - Fixes errors ocurring in +CPU mode where NCLIP is used for collision detection --- libpcsxcore/pgxp_value.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libpcsxcore/pgxp_value.h') 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; -- cgit v1.2.3