From 1a57e89ff0df62b0cf07734a0915de0d14d4de91 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 17 Oct 2016 08:04:15 -0400 Subject: [PATCH] Altered phase so that it now merely accounts for accumulated error across a frame. Can probably do better. --- 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 ac81f6dd6..68c456cca 100644 --- a/Machines/Oric/Video.cpp +++ b/Machines/Oric/Video.cpp @@ -58,7 +58,7 @@ void VideoOutput::run_for_cycles(int number_of_cycles) if(!_counter) { - _phase += 64; + _phase += 128; _frame_counter++; } }