From 469f0348ebff002ecfc137a6f438663f42029dbd Mon Sep 17 00:00:00 2001 From: d_m Date: Sat, 7 Sep 2024 19:33:47 -0400 Subject: [PATCH] Use start/select instead of A/B for controller inputs. When using a keyboard A and B are Control and Alt. This interviews with window managers or desktops that use control and alt for navigation shortcuts (for example alt-tab will pause/unpause music when m291 is in focus). After this change, the short cuts are moved to start/select, which correspond to shift/home. These are less likely to interfere with shortcuts. --- gui/m291/src/m291.tal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/m291/src/m291.tal b/gui/m291/src/m291.tal index cfa77ec..152ac26 100644 --- a/gui/m291/src/m291.tal +++ b/gui/m291/src/m291.tal @@ -143,8 +143,8 @@ ( down ) DUP #20 NEQ ?{ #01 } ( left ) DUP #40 NEQ ?{ } ( right ) DUP #80 NEQ ?{ .selection LDZ } - ( A ) DUP #01 NEQ ?{ .selection LDZ } - ( B ) DUP #02 NEQ ?{ } + ( select [shift] ) DUP #04 NEQ ?{ } + ( start [home] ) DUP #08 NEQ ?{ .selection LDZ } POP BRK (