From 3aa40212f348741a276b0f1d2966ff3c7e4bac41 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 15 Aug 2016 19:37:21 -0400 Subject: [PATCH] Fixed minor documentation error; admitted that this class didn't invent the idea of a pulse. --- Storage/Tape/Formats/CommodoreTAP.cpp | 2 +- Storage/Tape/Formats/CommodoreTAP.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Storage/Tape/Formats/CommodoreTAP.cpp b/Storage/Tape/Formats/CommodoreTAP.cpp index 503f84b40..f574a3fd7 100644 --- a/Storage/Tape/Formats/CommodoreTAP.cpp +++ b/Storage/Tape/Formats/CommodoreTAP.cpp @@ -64,7 +64,7 @@ void CommodoreTAP::reset() _current_pulse.type = Pulse::High; } -CommodoreTAP::Pulse CommodoreTAP::get_next_pulse() +Tape::Pulse CommodoreTAP::get_next_pulse() { if(_current_pulse.type == Pulse::High) { diff --git a/Storage/Tape/Formats/CommodoreTAP.hpp b/Storage/Tape/Formats/CommodoreTAP.hpp index b76055259..7d4a9de17 100644 --- a/Storage/Tape/Formats/CommodoreTAP.hpp +++ b/Storage/Tape/Formats/CommodoreTAP.hpp @@ -15,7 +15,7 @@ namespace Storage { /*! - Provides a @c Tape containing a Commodore-format tape image, which is simply a timed list of zero crossings. + Provides a @c Tape containing a Commodore-format tape image, which is simply a timed list of downward-going zero crossings. */ class CommodoreTAP: public Tape { public: