From 44574465c5294557b60ae3cd604c9b92b18e10ab Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 10 Sep 2024 21:06:49 -0400 Subject: [PATCH] Extend vsync to four lines. --- Machines/Oric/Video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Oric/Video.cpp b/Machines/Oric/Video.cpp index 42636c636..9520c60c1 100644 --- a/Machines/Oric/Video.cpp +++ b/Machines/Oric/Video.cpp @@ -17,7 +17,7 @@ using namespace Oric; namespace { const unsigned int PAL50VSyncStartPosition = 256*64; const unsigned int PAL60VSyncStartPosition = 234*64; - const unsigned int PAL50VSyncEndPosition = 259*64; // 19966 + const unsigned int PAL50VSyncEndPosition = 260*64; const unsigned int PAL60VSyncEndPosition = 238*64; const unsigned int PAL50Period = 312*64; const unsigned int PAL60Period = 264*64;