From 44935c23e0da675e12ac30e51f7634b4240b5dda Mon Sep 17 00:00:00 2001 From: Sepalani Date: Thu, 10 Nov 2016 00:41:16 +0000 Subject: [PATCH] MAX_XFB_HEIGHT: PAL value off by two fixed --- Source/Core/VideoCommon/VideoCommon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/VideoCommon.h b/Source/Core/VideoCommon/VideoCommon.h index 4bd5f59209..32843701c8 100644 --- a/Source/Core/VideoCommon/VideoCommon.h +++ b/Source/Core/VideoCommon/VideoCommon.h @@ -26,10 +26,10 @@ enum // The VI can do horizontal scaling (TODO: emulate). const u32 MAX_XFB_WIDTH = 720; -// Although EFB height is 528, 574-line XFB's can be created either with +// Although EFB height is 528, 576-line XFB's can be created either with // vertical scaling by the EFB copy operation or copying to multiple XFB's // that are next to each other in memory (TODO: handle that situation). -const u32 MAX_XFB_HEIGHT = 574; +const u32 MAX_XFB_HEIGHT = 576; // This structure should only be used to represent a rectangle in EFB // coordinates, where the origin is at the upper left and the frame dimensions