Skip to content

Commit

Permalink
Leave PAR for PAL games unchanged until we learn what the actual rati…
Browse files Browse the repository at this point in the history
…o is.
  • Loading branch information
clobber committed Sep 26, 2018
1 parent 04ce865 commit ecf339b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MupenGameCore.m
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ecf339b

Please sign in to comment.