From 8b80b924b1ce64a3f398549e7227cdc6ee3d442e Mon Sep 17 00:00:00 2001 From: frankmilliron <34376619+frankmilliron@users.noreply.github.com> Date: Tue, 21 Jul 2026 22:02:04 -0700 Subject: [PATCH 1/3] Call CheckEvents after hiding menu --- src/mgtk/mgtk.s | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mgtk/mgtk.s b/src/mgtk/mgtk.s index ce9e490b..82802046 100644 --- a/src/mgtk/mgtk.s +++ b/src/mgtk/mgtk.s @@ -6563,6 +6563,7 @@ in_menu_bar: imb_change: pha jsr HideMenu + MGTK_CALL MGTK::CheckEvents pla sta cur_open_menu_id From f46187f8d303a8c9c002a7b6115de8193486c5fb Mon Sep 17 00:00:00 2001 From: frankmilliron <34376619+frankmilliron@users.noreply.github.com> Date: Tue, 21 Jul 2026 22:43:32 -0700 Subject: [PATCH 2/3] Fix typo --- tests/lib/apple2.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/apple2.lua b/tests/lib/apple2.lua index e3fc54b3..ca12f965 100644 --- a/tests/lib/apple2.lua +++ b/tests/lib/apple2.lua @@ -919,7 +919,7 @@ local ssw_definitions = { { "IOUDISON" , "..C.", 0xC07E }, -- (W) Disable IOU access (IIc) { "RDIOUDIS" , "..C.", 0xC07E }, -- (R7) Read IOUDIS switch (1=on) (IIc) - { "IOUDISOFFF" , "..C.", 0xC07F }, -- (W) Enable IOU access (IIc) + { "IOUDISOFF" , "..C.", 0xC07F }, -- (W) Enable IOU access (IIc) { "RDDHIRES" , "..C.", 0xC07F }, -- (R7) Read DHIRES switch (0=on) (IIc) { "ROMIN2" , "OECG", 0xC082 }, -- (W) Read ROM; no write From 15330b12be3c3966da489da3e5e1ff8f0a2a6982 Mon Sep 17 00:00:00 2001 From: Frank Milliron Date: Wed, 22 Jul 2026 10:48:07 -0700 Subject: [PATCH 3/3] Fix Rod's on IIc --- src/desk_acc/matrix.s | 1 + src/desk_acc/rods.pattern.s | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/desk_acc/matrix.s b/src/desk_acc/matrix.s index bf4f3684..976bf4cb 100644 --- a/src/desk_acc/matrix.s +++ b/src/desk_acc/matrix.s @@ -77,6 +77,7 @@ kAuxPageClearByte = $C0 ; light-green on black, for RGB cards sta TXTCLR sta SET80VID + lda DHIRESOFF ; fix color on //c jsr RestoreText sta ALTZPON bit LCBANK1 diff --git a/src/desk_acc/rods.pattern.s b/src/desk_acc/rods.pattern.s index 552a21ed..0e79f410 100644 --- a/src/desk_acc/rods.pattern.s +++ b/src/desk_acc/rods.pattern.s @@ -229,6 +229,8 @@ event_params: .tag MGTK::Event .byte " Press any key to exit" .byte $00 + lda DHIRESOFF ;fix color on //c + begin: lda #$03 ;init loop counters sta w nxtw: lda #$01