1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-26 09:29:45 +00:00

Ensured is_at_end_ is initially cleared by default.

This commit is contained in:
Thomas Harte 2017-07-27 22:22:43 -04:00
parent a7f5f035a6
commit 4b5e9ffb83

View File

@ -10,7 +10,7 @@
using namespace Storage::Tape;
PulseQueuedTape::PulseQueuedTape() : pulse_pointer_(0) {}
PulseQueuedTape::PulseQueuedTape() : pulse_pointer_(0), is_at_end_(false) {}
bool PulseQueuedTape::is_at_end() {
return is_at_end_;