1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 01:57:54 +00:00

Undoes non-insertion of media.

This commit is contained in:
Thomas Harte 2019-11-10 21:52:06 -05:00
parent ab34fad8ca
commit c6f6bc68e1

View File

@ -558,7 +558,7 @@ class ConcreteMachine:
bool insert_media(const Analyser::Static::Media &media) final {
size_t c = 0;
for(const auto &disk: media.disks) {
// dma_->set_floppy_disk(disk, c);
dma_->set_floppy_disk(disk, c);
++c;
if(c == 2) break;
}