From 93abf8e53dc8e1d90ac8778ec52375a4115b8ca6 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 10 Jul 2020 20:17:55 +1000 Subject: [PATCH] GPU: Drop least significant bit of display start address Fixes extra column in some games, e.g. Nascar Thunder 2004, U.S. Navy Fighters. --- src/core/gpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gpu.h b/src/core/gpu.h index 7758ce605..7e690d9d6 100644 --- a/src/core/gpu.h +++ b/src/core/gpu.h @@ -630,7 +630,7 @@ protected: union { u32 display_address_start; - BitField X; + BitField X; BitField Y; }; union