From 584b6df40dc0a14237a8beed3c20a9f4bbc52b69 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 10 Sep 2024 20:43:01 -0400 Subject: [PATCH] Tweak 60Hz period. --- Machines/Oric/Video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Machines/Oric/Video.cpp b/Machines/Oric/Video.cpp index 69016395c..a2f7db8c6 100644 --- a/Machines/Oric/Video.cpp +++ b/Machines/Oric/Video.cpp @@ -17,10 +17,10 @@ using namespace Oric; namespace { const unsigned int PAL50VSyncStartPosition = 256*64; const unsigned int PAL60VSyncStartPosition = 234*64; - const unsigned int PAL50VSyncEndPosition = 259*64; + const unsigned int PAL50VSyncEndPosition = 259*64; // 19966 const unsigned int PAL60VSyncEndPosition = 238*64; const unsigned int PAL50Period = 312*64; - const unsigned int PAL60Period = 262*64; + const unsigned int PAL60Period = 264*64; } VideoOutput::VideoOutput(uint8_t *memory) :