From 6541c82071bf1a0ad7e2d4f44aca13fb3b6d6b97 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 4 Oct 2019 23:48:30 +1000 Subject: [PATCH] GPU: Use 12-bit int (sign plus 11 bits) for vertex position Fixes whacky polygons in Crash 2 and logo in Crash 1. --- src/core/gpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/gpu.h b/src/core/gpu.h index 4f10ba848..e63af87dc 100644 --- a/src/core/gpu.h +++ b/src/core/gpu.h @@ -156,8 +156,8 @@ protected: { u32 bits; - BitField x; - BitField y; + BitField x; + BitField y; }; struct DebugOptions