Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Oct 29, 2023
1 parent 264964b commit bbc66b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SerialPrograms/Source/CommonFramework/Globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace PokemonAutomation{
const bool IS_BETA_VERSION = true;
const int PROGRAM_VERSION_MAJOR = 0;
const int PROGRAM_VERSION_MINOR = 42;
const int PROGRAM_VERSION_PATCH = 6;
const int PROGRAM_VERSION_PATCH = 7;

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 @@ -70,11 +70,11 @@ ImageMatchResult CroppedImageDictionaryMatcher::match(
std::vector<ImageViewRGB32> crops = get_crop_candidates(image);

if (PreloadSettings::debug().IMAGE_DICTIONARY_MATCHING){
size_t c = 0;
// size_t c = 0;
for (const ImageViewRGB32& crop : crops){
// std::cout << "CroppedImageDictionaryMatcher: process input" << c << "image with background " << crop.background.to_string() << std::endl;
dump_debug_image(global_logger_command_line(), "CommonFramework/CroppedImageDictionaryMatcher", "match_input_processed", crop);
c++;
// c++;
}
}

Expand Down

0 comments on commit bbc66b2

Please sign in to comment.