We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ea6e49 commit 4842289Copy full SHA for 4842289
workspace/rgb30/platform/platform.c
@@ -151,8 +151,9 @@ void PLAT_pollInput(void) {
151
152
if (code==RAW_LSX) pad.laxis.x = (value * 32767) / 1800;
153
else if (code==RAW_LSY) pad.laxis.y = (value * 32767) / 1800;
154
- else if (code==RAW_RSX) pad.raxis.x = (value * 32767) / 1800;
155
- else if (code==RAW_RSY) pad.raxis.y = (value * 32767) / 1800;
+ // TODO: these seem to be switched on the rgb30 according to the padtest rom
+ else if (code==RAW_RSX) pad.raxis.y = (value * 32767) / 1800;
156
+ else if (code==RAW_RSY) pad.raxis.x = (value * 32767) / 1800;
157
158
btn = BTN_NONE; // already handled, force continue
159
}
0 commit comments