Skip to content

Commit 5edf75a

Browse files
committed
Timing adjustments.
1 parent fbf5809 commit 5edf75a

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

Common/Cpp/AbstractLogger.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#include <string>
1111
#include <vector>
1212
#include "Color.h"
13-
#include "Time.h"
1413

1514
namespace PokemonAutomation{
1615

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace PokemonAutomation{
2525
const bool IS_BETA_VERSION = true;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 50;
28-
const int PROGRAM_VERSION_PATCH = 7;
28+
const int PROGRAM_VERSION_PATCH = 8;
2929

3030
const std::string PROGRAM_VERSION_BASE =
3131
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/NintendoSwitch/Programs/NintendoSwitch_GameEntry.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void start_game_from_home_with_inference(
138138
context.wait_for_all_requests();
139139
int ret = wait_until(
140140
console, context,
141-
std::chrono::seconds(10),
141+
std::chrono::seconds(30),
142142
{
143143
home,
144144
user_select,
@@ -176,7 +176,7 @@ void start_game_from_home_with_inference(
176176
default:
177177
throw OperationFailedException(
178178
ErrorReport::SEND_ERROR_REPORT, console,
179-
"start_game_from_home_with_inference(): No recognizable state after 10 seconds.",
179+
"start_game_from_home_with_inference(): No recognizable state after 30 seconds.",
180180
true
181181
);
182182
}

SerialPrograms/Source/PokemonLA/Programs/PokemonLA_RegionNavigation.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
*/
66

77
#include "CommonFramework/Exceptions/OperationFailedException.h"
8-
#include "CommonFramework/ImageTypes/ImageViewRGB32.h"
9-
#include "CommonFramework/VideoPipeline/VideoFeed.h"
108
#include "CommonFramework/InferenceInfra/InferenceRoutines.h"
119
#include "CommonFramework/Inference/BlackScreenDetector.h"
1210
#include "CommonFramework/Tools/ErrorDumper.h"
@@ -47,7 +45,7 @@ void goto_professor(Logger& logger, BotBaseContext& context, Camp camp){
4745
pbf_move_left_joystick(context, 255, 48, 105, 0);
4846
return;
4947
case Camp::HIGHLANDS_HIGHLANDS:
50-
pbf_move_left_joystick(context, 255, 48, 176, 0);
48+
pbf_move_left_joystick(context, 255, 64, 176, 0);
5149
return;
5250
case Camp::HIGHLANDS_MOUNTAIN:
5351
pbf_move_left_joystick(context, 255, 32, 125, 0);

0 commit comments

Comments
 (0)