From 53514c7fdc4b430bcbb7897cfa8ac66f7ab6eed2 Mon Sep 17 00:00:00 2001
From: Thomas Harte <thomas.harte@gmail.com>
Date: Sun, 31 Jan 2021 21:28:55 -0500
Subject: [PATCH] Ensures non-breakage of Qt interface.

---
 Machines/Electron/Electron.cpp | 2 +-
 OSBindings/Qt/mainwindow.cpp   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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 <bool has_scsi_bus> 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>();
 
 	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();