summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/wormlet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/wormlet.c b/apps/recorder/wormlet.c
index d6850dc039..2937a1bb83 100644
--- a/apps/recorder/wormlet.c
+++ b/apps/recorder/wormlet.c
@@ -1348,11 +1348,11 @@ static bool run(void)
1348 player2_dir = (player2_dir + 1) % 4; 1348 player2_dir = (player2_dir + 1) % 4;
1349 break; 1349 break;
1350 1350
1351 case BUTTON_VOL_UP: 1351 case BUTTON_RC_VOL_UP:
1352 player3_dir = (player3_dir + 1) % 4; 1352 player3_dir = (player3_dir + 1) % 4;
1353 break; 1353 break;
1354 1354
1355 case BUTTON_VOL_DOWN: 1355 case BUTTON_RC_VOL_DOWN:
1356 player3_dir = (player3_dir + 3) % 4; 1356 player3_dir = (player3_dir + 3) % 4;
1357 break; 1357 break;
1358 1358