From ecf339b31218fbe01bed4837dd9b5f9869911792 Mon Sep 17 00:00:00 2001 From: clobber Date: Tue, 25 Sep 2018 21:51:36 -0500 Subject: [PATCH] Leave PAR for PAL games unchanged until we learn what the actual ratio is. --- MupenGameCore.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MupenGameCore.m b/MupenGameCore.m index 73ff3c1..7d7a454 100644 --- a/MupenGameCore.m +++ b/MupenGameCore.m @@ -574,7 +574,7 @@ - (void)loadStateFromFileAtPath:(NSString *)fileName completionHandler:(void (^) - (OEIntSize)aspectSize { - return OEIntSizeMake(videoWidth * (120.0 / 119.0), videoHeight); + return OEIntSizeMake(isNTSC ? videoWidth * (120.0 / 119.0) : videoWidth, videoHeight); } - (OEIntSize)bufferSize