From fae1bb0db90b7407286db5fe607fa81d31c36616 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 15 Oct 2016 21:49:41 -0400 Subject: [PATCH] First successful game loaded! It turns out exactly one '$' is correct. Probably. --- Storage/Tape/Formats/OricTAP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Tape/Formats/OricTAP.cpp b/Storage/Tape/Formats/OricTAP.cpp index 1d60529ff..6857fd06a 100644 --- a/Storage/Tape/Formats/OricTAP.cpp +++ b/Storage/Tape/Formats/OricTAP.cpp @@ -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 {