diff --git a/Storage/Tape/Formats/TZX.hpp b/Storage/Tape/Formats/TZX.hpp index a432d53c1..4d31e3ff3 100644 --- a/Storage/Tape/Formats/TZX.hpp +++ b/Storage/Tape/Formats/TZX.hpp @@ -34,8 +34,8 @@ public: private: Storage::FileHolder file_; - void virtual_reset(); - void get_next_pulses(); + void virtual_reset() override; + void get_next_pulses() override; bool current_level_; diff --git a/Storage/Tape/Formats/TapeUEF.hpp b/Storage/Tape/Formats/TapeUEF.hpp index 6122a688a..bb32ca0b1 100644 --- a/Storage/Tape/Formats/TapeUEF.hpp +++ b/Storage/Tape/Formats/TapeUEF.hpp @@ -36,10 +36,10 @@ public: }; private: - void virtual_reset(); + void virtual_reset() override; void set_platform_type(); - TargetPlatform::Type target_platform_type(); + TargetPlatform::Type target_platform_type() override; TargetPlatform::Type platform_type_ = TargetPlatform::Acorn; gzFile file_; @@ -53,7 +53,7 @@ private: }; bool get_next_chunk(Chunk &); - void get_next_pulses(); + void get_next_pulses() override; void queue_implicit_bit_pattern(uint32_t length); void queue_explicit_bit_pattern(uint32_t length);