Skip to content

Commit edd3d79

Browse files
authored
Update PokemonSV_AutoStoryTools.cpp - change_settings(): avoid double scrolls
1 parent bbbda4e commit edd3d79

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

SerialPrograms/Source/PokemonSV/Programs/AutoStory/PokemonSV_AutoStoryTools.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,9 +551,9 @@ void overworld_navigation(
551551

552552
void config_option(ProControllerContext& context, int change_option_value){
553553
for (int i = 0; i < change_option_value; i++){
554-
pbf_press_dpad(context, DPAD_RIGHT, 15, 20);
554+
pbf_press_dpad(context, DPAD_RIGHT, 13, 20);
555555
}
556-
pbf_press_dpad(context, DPAD_DOWN, 15, 20);
556+
pbf_press_dpad(context, DPAD_DOWN, 13, 20);
557557
}
558558

559559
void swap_starter_moves(SingleSwitchProgramEnvironment& env, ProControllerContext& context, Language language){
@@ -1299,3 +1299,4 @@ void checkpoint_reattempt_loop_tutorial(
12991299
}
13001300
}
13011301
}
1302+

0 commit comments

Comments
 (0)