1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-11 14:37:37 +00:00

Okay, so I had those constants transposed. What a klutz I've been!

This commit is contained in:
Thomas Harte 2015-08-19 09:09:00 -04:00
parent f74d9ee373
commit 28fad66272

View File

@ -21,8 +21,8 @@ static const uint32_t kCRTFixedPointOffset = 0x08000000;
void CRT::set_new_timing(unsigned int cycles_per_line, unsigned int height_of_display)
{
const unsigned int syncCapacityLineChargeThreshold = 3;
const unsigned int millisecondsHorizontalRetraceTime = 10; // source: Dictionary of Video and Television Technology, p. 234
const unsigned int scanlinesVerticalRetraceTime = 7; // source: ibid
const unsigned int millisecondsHorizontalRetraceTime = 7; // source: Dictionary of Video and Television Technology, p. 234
const unsigned int scanlinesVerticalRetraceTime = 10; // source: ibid
// To quote:
//