Skip to content

Commit ffa195e

Browse files
committed
Fix incorrect macro causing all programs to not run on Uno R3.
1 parent 48dd0d7 commit ffa195e

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

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 = false;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 51;
28-
const int PROGRAM_VERSION_PATCH = 2;
28+
const int PROGRAM_VERSION_PATCH = 3;
2929

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

SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@ const char* to_string(Features feature){
3232
const std::pair<std::string, std::set<std::string>> OLD_NINTENDO_SWITCH_DEFAULT_REQUIREMENTS{
3333
NintendoSwitch_Basic,
3434
{
35-
to_string(SerialPABotBase::Features::TickPrecise),
36-
to_string(SerialPABotBase::Features::NintendoSwitch_Basic),
37-
// to_string(SerialPABotBase::Features::NintendoSwitch_SSF),
38-
// to_string(SerialPABotBase::Features::NintendoSwitch_Macros),
39-
to_string(SerialPABotBase::Features::NintendoSwitch_DateSkip),
35+
to_string(Features::TickPrecise),
36+
to_string(Features::NintendoSwitch_Basic),
37+
// to_string(Features::NintendoSwitch_SSF),
38+
// to_string(Features::NintendoSwitch_Macros),
4039
}
4140
};
4241

0 commit comments

Comments
 (0)