1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 01:57:54 +00:00

Fixed phase offsets.

This commit is contained in:
Thomas Harte 2016-06-14 18:19:06 -04:00
parent f4884a3481
commit a2a6e3c818

View File

@ -320,7 +320,7 @@ MOS6560Speaker::MOS6560Speaker() :
_volume(0), _volume(0),
_control_registers{0, 0, 0, 0}, _control_registers{0, 0, 0, 0},
_shift_registers{0, 0, 0, 0}, _shift_registers{0, 0, 0, 0},
_counters{0, 1, 2, 0} _counters{2, 1, 0, 0} // create a slight phase offset for the three channels
{ {
} }