mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-25 16:31:42 +00:00
First successful game loaded! It turns out exactly one '$' is correct. Probably.
This commit is contained in:
parent
a67afb7efa
commit
fae1bb0db9
@ -65,7 +65,7 @@ Tape::Pulse OricTAP::virtual_get_next_pulse()
|
||||
switch(_phase)
|
||||
{
|
||||
case LeadIn:
|
||||
next_byte = _phase_counter < 256 ? 0x16 : 0x24;
|
||||
next_byte = _phase_counter < 258 ? 0x16 : 0x24;
|
||||
_phase_counter++;
|
||||
if(_phase_counter == 259) // 256 artificial bytes plus the three in the file = 259
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user