1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Switch to [hard-coded] PAL, for now.

In the hope that I get to see some graphics soon, this should better conform to my expectations.
This commit is contained in:
Thomas Harte 2021-07-25 20:41:51 -04:00
parent 34d4420e8c
commit 7fd00165c9

View File

@ -30,8 +30,8 @@ Chipset::Changes Chipset::run_for(HalfCycles length) {
x_ %= 227;
y_ += changes.hsyncs;
changes.vsyncs = y_ / 262;
y_ %= 262;
changes.vsyncs = y_ / 312;
y_ %= 312;
return changes;
}