From 35edf62af3b66a9d2682ae476b15dd7a97788c26 Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 21:41:28 -0700 Subject: [PATCH 1/7] fix build --- Common/Cpp/Logging/LastLogTracker.cpp | 2 +- SerialPrograms/Source/CommonFramework/ProgramSession.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Common/Cpp/Logging/LastLogTracker.cpp b/Common/Cpp/Logging/LastLogTracker.cpp index d77563c9e6..d249e818a7 100644 --- a/Common/Cpp/Logging/LastLogTracker.cpp +++ b/Common/Cpp/Logging/LastLogTracker.cpp @@ -3,7 +3,7 @@ * From: https://github.com/PokemonAutomation/ * */ - +#include #include "LastLogTracker.h" namespace PokemonAutomation{ diff --git a/SerialPrograms/Source/CommonFramework/ProgramSession.h b/SerialPrograms/Source/CommonFramework/ProgramSession.h index 64f98aebf4..a493243918 100644 --- a/SerialPrograms/Source/CommonFramework/ProgramSession.h +++ b/SerialPrograms/Source/CommonFramework/ProgramSession.h @@ -17,6 +17,8 @@ #define PokemonAutomation_CommonFramework_ProgramSession_H #include +#include +#include #include "Common/Cpp/Logging/TaggedLogger.h" #include "Common/Cpp/Time.h" #include "Common/Cpp/ListenerSet.h" From c799c53359791e2bab06c0144f01cc2aa9c30015 Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 22:20:07 -0700 Subject: [PATCH 2/7] fix build --- SerialPrograms/Source/Controllers/ControllerConnection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/SerialPrograms/Source/Controllers/ControllerConnection.h b/SerialPrograms/Source/Controllers/ControllerConnection.h index 5c06d09d9b..a48874f1a6 100644 --- a/SerialPrograms/Source/Controllers/ControllerConnection.h +++ b/SerialPrograms/Source/Controllers/ControllerConnection.h @@ -7,6 +7,7 @@ #ifndef PokemonAutomation_Controllers_ControllerConnection_H #define PokemonAutomation_Controllers_ControllerConnection_H +#include #include "Common/Cpp/ListenerSet.h" #include "Common/Cpp/Concurrency/SpinLock.h" #include "ControllerDescriptor.h" From b0950fe2632d298c40753a3cb089cdad7ed7d42d Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 22:23:06 -0700 Subject: [PATCH 3/7] revert --- Common/Cpp/Logging/LastLogTracker.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Common/Cpp/Logging/LastLogTracker.cpp b/Common/Cpp/Logging/LastLogTracker.cpp index d249e818a7..fec894f651 100644 --- a/Common/Cpp/Logging/LastLogTracker.cpp +++ b/Common/Cpp/Logging/LastLogTracker.cpp @@ -3,7 +3,6 @@ * From: https://github.com/PokemonAutomation/ * */ -#include #include "LastLogTracker.h" namespace PokemonAutomation{ From 2679570fc78e94fbb591af1ac432e144ad73befe Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 22:27:04 -0700 Subject: [PATCH 4/7] minor --- Common/Cpp/Logging/LastLogTracker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Common/Cpp/Logging/LastLogTracker.cpp b/Common/Cpp/Logging/LastLogTracker.cpp index fec894f651..d77563c9e6 100644 --- a/Common/Cpp/Logging/LastLogTracker.cpp +++ b/Common/Cpp/Logging/LastLogTracker.cpp @@ -3,6 +3,7 @@ * From: https://github.com/PokemonAutomation/ * */ + #include "LastLogTracker.h" namespace PokemonAutomation{ From 1fdc50f901c0df74da8108ac369bc1f187a75e3a Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 22:41:56 -0700 Subject: [PATCH 5/7] fix build --- .../Source/Controllers/Schedulers/SuperscalarScheduler.h | 1 + 1 file changed, 1 insertion(+) diff --git a/SerialPrograms/Source/Controllers/Schedulers/SuperscalarScheduler.h b/SerialPrograms/Source/Controllers/Schedulers/SuperscalarScheduler.h index 2979c7eec6..959c0f9de8 100644 --- a/SerialPrograms/Source/Controllers/Schedulers/SuperscalarScheduler.h +++ b/SerialPrograms/Source/Controllers/Schedulers/SuperscalarScheduler.h @@ -10,6 +10,7 @@ #include #include #include +#include #include "Common/Compiler.h" #include "Common/Cpp/Time.h" #include "Common/Cpp/Logging/AbstractLogger.h" From 7d20c0051458982460a40bb5dcfbaafd1fca790e Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 22:56:57 -0700 Subject: [PATCH 6/7] fix build --- .../Inference/NintendoSwitch2_BinarySliderDetector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/SerialPrograms/Source/NintendoSwitch/Inference/NintendoSwitch2_BinarySliderDetector.h b/SerialPrograms/Source/NintendoSwitch/Inference/NintendoSwitch2_BinarySliderDetector.h index 7ad1ca55ef..d9368ea7b6 100644 --- a/SerialPrograms/Source/NintendoSwitch/Inference/NintendoSwitch2_BinarySliderDetector.h +++ b/SerialPrograms/Source/NintendoSwitch/Inference/NintendoSwitch2_BinarySliderDetector.h @@ -7,6 +7,7 @@ #ifndef PokemonAutomation_NintendoSwitch2_BinarySliderDetector_H #define PokemonAutomation_NintendoSwitch2_BinarySliderDetector_H +#include #include "Common/Cpp/Color.h" #include "CommonFramework/ImageTools/ImageBoxes.h" #include "CommonTools/VisualDetector.h" From 9af8443395f85c3df666d09c7ad191be0744b0a5 Mon Sep 17 00:00:00 2001 From: jw098 Date: Tue, 28 Jul 2026 23:18:21 -0700 Subject: [PATCH 7/7] fix --- .../Inference/ShinyDetection/PokemonSwSh_ShinySparkleSet.h | 1 + 1 file changed, 1 insertion(+) diff --git a/SerialPrograms/Source/PokemonSwSh/Inference/ShinyDetection/PokemonSwSh_ShinySparkleSet.h b/SerialPrograms/Source/PokemonSwSh/Inference/ShinyDetection/PokemonSwSh_ShinySparkleSet.h index 5558a2b30b..10d0a7f38d 100644 --- a/SerialPrograms/Source/PokemonSwSh/Inference/ShinyDetection/PokemonSwSh_ShinySparkleSet.h +++ b/SerialPrograms/Source/PokemonSwSh/Inference/ShinyDetection/PokemonSwSh_ShinySparkleSet.h @@ -8,6 +8,7 @@ #define PokemonAutomation_PokemonSwSh_ShinySparkleSet_H #include +#include #include "CommonFramework/ImageTools/ImageBoxes.h" #include "Pokemon/Pokemon_ShinySparkleSet.h"