Skip to content

Commit

Permalink
Fix incorrect macro causing all programs to not run on Uno R3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Feb 1, 2025
1 parent 48dd0d7 commit ffa195e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SerialPrograms/Source/CommonFramework/Globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace PokemonAutomation{
const bool IS_BETA_VERSION = false;
const int PROGRAM_VERSION_MAJOR = 0;
const int PROGRAM_VERSION_MINOR = 51;
const int PROGRAM_VERSION_PATCH = 2;
const int PROGRAM_VERSION_PATCH = 3;

const std::string PROGRAM_VERSION_BASE =
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@ const char* to_string(Features feature){
const std::pair<std::string, std::set<std::string>> OLD_NINTENDO_SWITCH_DEFAULT_REQUIREMENTS{
NintendoSwitch_Basic,
{
to_string(SerialPABotBase::Features::TickPrecise),
to_string(SerialPABotBase::Features::NintendoSwitch_Basic),
// to_string(SerialPABotBase::Features::NintendoSwitch_SSF),
// to_string(SerialPABotBase::Features::NintendoSwitch_Macros),
to_string(SerialPABotBase::Features::NintendoSwitch_DateSkip),
to_string(Features::TickPrecise),
to_string(Features::NintendoSwitch_Basic),
// to_string(Features::NintendoSwitch_SSF),
// to_string(Features::NintendoSwitch_Macros),
}
};

Expand Down

0 comments on commit ffa195e

Please sign in to comment.