From 1e4951c4cb4c7d53dffc4e16f20719f4de192bac Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Wed, 18 Mar 2026 00:38:40 -0500 Subject: [PATCH] ALT-SPACE hotkey fixed. --- dvx/dvxApp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dvx/dvxApp.c b/dvx/dvxApp.c index 0890f5f..64a307d 100644 --- a/dvx/dvxApp.c +++ b/dvx/dvxApp.c @@ -2853,8 +2853,8 @@ static void pollKeyboard(AppContextT *ctx) { } // Alt+Space — open/close system menu - // Enhanced INT 16h: Alt+Space returns scancode 0x02, ascii 0x20 - if (scancode == 0x02 && ascii == 0x20) { + // Enhanced INT 16h: Alt+Space returns scancode 0x39, ascii 0x20 + if (scancode == 0x39 && ascii == 0x20) { if (ctx->sysMenu.active) { closeSysMenu(ctx); } else if (ctx->stack.focusedIdx >= 0) {