1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Fix typo in comment in WOZ.cpp

This commit is contained in:
Ryan Carsten Schmidt 2023-11-29 03:42:39 -06:00 committed by GitHub
parent b07cc5c2ec
commit 2e314e7a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,7 +216,7 @@ void WOZ::set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tra
bool WOZ::get_is_read_only() {
/*
There is an unintended issue with the disk code that sites above here: it doesn't understand the idea
There is an unintended issue with the disk code that sits above here: it doesn't understand the idea
of multiple addresses mapping to the same track, yet it maintains a cache of track contents. Therefore
if a WOZ is written to, what's written will magically be exactly 1/4 track wide, not affecting its
neighbours. I've made WOZs readonly until I can correct that issue.