From 750f2cb88369ccf8f9c5e5b5f4dbdc12739c2777 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 13 Aug 2017 18:54:39 -0400 Subject: [PATCH] Flagged as not read-only, at least for now, to allow 8272 writing tests definitively to function. --- Storage/Disk/Formats/CPCDSK.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Disk/Formats/CPCDSK.cpp b/Storage/Disk/Formats/CPCDSK.cpp index f1a9b1570..ba57c539b 100644 --- a/Storage/Disk/Formats/CPCDSK.cpp +++ b/Storage/Disk/Formats/CPCDSK.cpp @@ -47,7 +47,7 @@ unsigned int CPCDSK::get_head_count() { bool CPCDSK::get_is_read_only() { // TODO: allow writing. - return true; + return false; } std::shared_ptr CPCDSK::get_uncached_track_at_position(unsigned int head, unsigned int position) {