From 080d30bf0cfbbe7a9aa743af1a6f0ebc3e23c27d Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 21 Dec 2024 23:05:29 +1000 Subject: [PATCH] GPU: Slightly adjust PAL active range Gets the PAR closer to the expected value of 59/94 with a divider of 4. --- 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 c663d5071..6fd7778aa 100644 --- a/src/core/gpu.h +++ b/src/core/gpu.h @@ -84,8 +84,8 @@ public: NTSC_HORIZONTAL_ACTIVE_END = 3288, NTSC_VERTICAL_ACTIVE_START = 16, NTSC_VERTICAL_ACTIVE_END = 256, - PAL_HORIZONTAL_ACTIVE_START = 487, - PAL_HORIZONTAL_ACTIVE_END = 3282, + PAL_HORIZONTAL_ACTIVE_START = 488, + PAL_HORIZONTAL_ACTIVE_END = 3300, PAL_VERTICAL_ACTIVE_START = 20, PAL_VERTICAL_ACTIVE_END = 308, };