We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8a8458 commit 3789019Copy full SHA for 3789019
1 file changed
HayB0XX/ProjectM.cpp
@@ -52,7 +52,9 @@ void ProjectM::UpdateDigitalOutputs() {
52
mOutputState.dpadRight = mrInputState.c_right;
53
}
54
55
- mOutputState.dpadUp = mrInputState.midshield;
+ // Don't override dpad up if it's already pressed using the MX + MY dpad
56
+ // layer.
57
+ mOutputState.dpadUp = mOutputState.dpadUp || mrInputState.midshield;
58
59
if (mrInputState.select)
60
mOutputState.dpadLeft = true;
0 commit comments