mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-23 20:29:42 +00:00
Made minor fix to ensure that a header that appears to extend beyond the end of an Oric .TAP doesn't create an ostensibly endless tape.
This commit is contained in:
parent
8b40ae03ca
commit
97811fe590
@ -97,6 +97,10 @@ Tape::Pulse OricTAP::virtual_get_next_pulse()
|
||||
{
|
||||
_next_phase = Gap;
|
||||
}
|
||||
if(feof(_file))
|
||||
{
|
||||
_next_phase = End;
|
||||
}
|
||||
_phase_counter++;
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user