Skip to content

Commit

Permalink
Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Dec 25, 2023
1 parent 67b7237 commit 0080b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 = true;
const int PROGRAM_VERSION_MAJOR = 0;
const int PROGRAM_VERSION_MINOR = 44;
const int PROGRAM_VERSION_PATCH = 1;
const int PROGRAM_VERSION_PATCH = 2;

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 @@ -570,7 +570,7 @@ void BoxSorting::program(SingleSwitchProgramEnvironment& env, BotBaseContext& co
}else{
if(find_first_poke == false){
first_poke_slot = {column, row};
find_first_poke = true;;
find_first_poke = true;
}
box_render.add(COLOR_GREEN, slot_box);
stats.pkmn++;
Expand Down

0 comments on commit 0080b7e

Please sign in to comment.