From 2722435f36b331f64078d0ba3fbef9c8a8f35965 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 19 May 2020 10:19:48 +0200 Subject: [PATCH] oops --- src/common/FrameBufferSDL2.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/FrameBufferSDL2.cxx b/src/common/FrameBufferSDL2.cxx index 8a943332c..37d2e5499 100644 --- a/src/common/FrameBufferSDL2.cxx +++ b/src/common/FrameBufferSDL2.cxx @@ -482,7 +482,7 @@ int FrameBufferSDL2::gameRefreshRate() const const string format = myOSystem.console().getFormatString(); const bool isNtsc = format == "NTSC" || format == "PAL60" || format == "SECAM60"; - return isNtsc ? 75 : 50; // TODO: check for multiples e.g. 120/100 too + return isNtsc ? 60 : 50; // TODO: check for multiples e.g. 120/100 too } return 60; }