1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-05 08:26:28 +00:00

Altered phase so that it now merely accounts for accumulated error across a frame. Can probably do better.

This commit is contained in:
Thomas Harte
2016-10-17 08:04:15 -04:00
parent 43612e1ca2
commit 1a57e89ff0

View File

@@ -58,7 +58,7 @@ void VideoOutput::run_for_cycles(int number_of_cycles)
if(!_counter)
{
_phase += 64;
_phase += 128;
_frame_counter++;
}
}