Skip to content

Commit 77d11cf

Browse files
committed
pyroar turn for switch 1 only
1 parent b8dd7c7 commit 77d11cf

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

SerialPrograms/Source/PokemonSV/Programs/Farming/PokemonSV_BlueberryCatchPhoto.cpp

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,11 @@ CameraAngle quest_photo_navi(
126126

127127
pbf_press_button(context, BUTTON_L, 20, 50);
128128
pbf_move_left_joystick(context, 128, 0, 100, 50);
129-
pbf_move_left_joystick(context, 0, 0, 20, 50);
129+
130+
//Turn slightly for switch 1
131+
if (console.state().console_type() == ConsoleType::Switch1) {
132+
pbf_move_left_joystick(context, 0, 0, 20, 50);
133+
}
130134

131135
break;
132136
case BBQuests::photo_bug: case BBQuests::photo_rock:
@@ -400,8 +404,11 @@ void quest_catch_navi(
400404
pbf_press_button(context, BUTTON_L, 20, 50);
401405
pbf_move_left_joystick(context, 128, 0, 100, 50);
402406

403-
pbf_move_left_joystick(context, 0, 0, 20, 50);
404-
pbf_press_button(context, BUTTON_L, 20, 50);
407+
//Turn slightly for switch 1
408+
if (console.state().console_type() == ConsoleType::Switch1) {
409+
pbf_move_left_joystick(context, 0, 0, 20, 50);
410+
pbf_press_button(context, BUTTON_L, 20, 50);
411+
}
405412

406413
break;
407414

0 commit comments

Comments
 (0)