From 06779873207856a3675abfdd388cfbe234a64897 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 8 Jan 2025 22:30:32 -0500 Subject: [PATCH] Ensure all paths return a value. --- Storage/Tape/Formats/CommodoreTAP.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Storage/Tape/Formats/CommodoreTAP.cpp b/Storage/Tape/Formats/CommodoreTAP.cpp index c78f61dc8..4bf30467f 100644 --- a/Storage/Tape/Formats/CommodoreTAP.cpp +++ b/Storage/Tape/Formats/CommodoreTAP.cpp @@ -43,6 +43,7 @@ CommodoreTAP::Serialiser::Serialiser(const std::string &file_name) : current_pulse_.length.clock_rate = static_cast( [&] { switch(platform_) { + default: case Platform::Vic20: // It empirically seems like Vic-20 waves are counted with C64 timings? case Platform::C64: return video_ == VideoStandard::PAL ? 985'248 : 1'022'727; case Platform::C16: return video_ == VideoStandard::PAL ? 886'722 : 894'886;