diff --git a/Machines/Electron/Electron.cpp b/Machines/Electron/Electron.cpp index 7c6670564..65faa203d 100644 --- a/Machines/Electron/Electron.cpp +++ b/Machines/Electron/Electron.cpp @@ -356,7 +356,7 @@ template class ConcreteMachine: break; case 0xfc03: if(has_scsi_bus && (address&0x00f0) == 0x0040) { - printf("SCSI IRQ: %s %02x\n", isReadOperation(operation) ? "->" : "<-", *value); + // TODO: SCSI IRQ. Once I'm clear on the use. } break; case 0xfc01: diff --git a/OSBindings/Qt/mainwindow.cpp b/OSBindings/Qt/mainwindow.cpp index 8a0b781da..86afb4691 100644 --- a/OSBindings/Qt/mainwindow.cpp +++ b/OSBindings/Qt/mainwindow.cpp @@ -1163,7 +1163,7 @@ void MainWindow::start_electron() { auto target = std::make_unique(); target->has_dfs = ui->electronDFSCheckBox->isChecked(); - target->has_adfs = ui->electronADFSCheckBox->isChecked(); + target->has_pres_adfs = ui->electronADFSCheckBox->isChecked(); target->has_ap6_rom = ui->electronAP6CheckBox->isChecked(); target->has_sideways_ram = ui->electronSidewaysRAMCheckBox->isChecked();