From 8b8097525b68d3d22289011abe637e3888dc3b29 Mon Sep 17 00:00:00 2001 From: Stephen White Date: Wed, 17 Oct 2018 15:39:55 +1100 Subject: [PATCH] Fixed issue #95 The DisableSD2IECCommands option makes the Pi1541 hang --- src/main.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 443f85b..3d0e130 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1117,12 +1117,9 @@ void emulator() { while (emulating == IEC_COMMANDS) { - if (keyboard->CheckChanged()) - { - fileBrowser->Update(); - if (fileBrowser->SelectionsMade()) - emulating = BeginEmulating(fileBrowser, fileBrowser->LastSelectionName()); - } + fileBrowser->Update(); + if (fileBrowser->SelectionsMade()) + emulating = BeginEmulating(fileBrowser, fileBrowser->LastSelectionName()); usDelay(1); } }