1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-01 14:29:51 +00:00

Ensures the enter key is cleared before fast-loading tapes have loaded.

This commit is contained in:
Thomas Harte 2021-03-22 22:42:10 -04:00
parent 60e77785e8
commit 6da099d7e1

View File

@ -198,6 +198,12 @@ template<Model model> class ConcreteMachine:
// The below patches over the 'LD-BYTES' routine from the 48kb ROM.
if(use_fast_tape_hack_ && address == 0x0556 && read_pointers_[0] == &rom_[0xc000]) {
if(perform_rom_ld_bytes()) {
// Stop pressing enter, if neccessry.
if(duration_to_press_enter_ > Cycles(0)) {
duration_to_press_enter_ = Cycles(0);
keyboard_.set_key_state(ZX::Keyboard::KeyEnter, false);
}
*cycle.value = 0xc9; // i.e. RET.
break;
}