From 003a71cb5abe06c05b22212b4a7a26b59e97b63b Mon Sep 17 00:00:00 2001 From: beirich Date: Mon, 16 May 2011 04:07:05 +0000 Subject: [PATCH] PAL PCE has the same timings as NTSC --- BizHawk.MultiClient/movie/Movie.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/BizHawk.MultiClient/movie/Movie.cs b/BizHawk.MultiClient/movie/Movie.cs index c8fceed059..2acf7abdb0 100644 --- a/BizHawk.MultiClient/movie/Movie.cs +++ b/BizHawk.MultiClient/movie/Movie.cs @@ -375,7 +375,6 @@ namespace BizHawk.MultiClient { //Should these be placed somewhere more accessible? Perhaps as a public dictionary object in MainForm? const double NES_PAL = 50.006977968268290849; const double NES_NTSC = (double)60.098813897440515532; - const double PCE_PAL = 50.0; //TODO ? const double PCE_NTSC = (7159090.90909090 / 455 / 263); //~59.826 const double SMS_PAL = 60.0; const double SMS_NTSC = 50.0; @@ -412,10 +411,7 @@ namespace BizHawk.MultiClient else return frames / NES_NTSC; case "PCE": - if (pal) - return frames / PCE_PAL; - else - return frames / PCE_NTSC; + return frames / PCE_NTSC; case "GEN": return frames / GEN;