Skip to content

Commit c1aeba5

Browse files
committed
Increase parameter menu wait time
This might prevent occasional skipping of the D-pad during text speed setting.
1 parent 08e6104 commit c1aeba5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/swsh/swsh.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ int main(void)
2424
/* Initial beep to confirm that the buzzer works */
2525
beep();
2626

27-
2827
/* Wait for the user to press the button (should be on the Switch main menu) */
2928
count_button_presses(100, 100);
3029

@@ -239,7 +238,7 @@ void set_text_speed(bool fast_speed, bool save)
239238
{ BT_NONE, DP_LEFT, SEQ_MASH, 1 }, /* Move to Parameters position */
240239

241240
{ BT_A, DP_NEUTRAL, SEQ_HOLD, 1 }, /* Enter Parameters */
242-
{ BT_NONE, DP_NEUTRAL, SEQ_HOLD, 25 }, /* Wait for menu */
241+
{ BT_NONE, DP_NEUTRAL, SEQ_HOLD, 26 }, /* Wait for menu */
243242

244243
{ BT_NONE, dir, SEQ_MASH, 2 }, /* Select speed */
245244

0 commit comments

Comments
 (0)