Skip to content

Commit 6c3350b

Browse files
authored
Merge pull request #573 from PokemonAutomation/main
Fix warning -> error.
2 parents c2af160 + 7e496bf commit 6c3350b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SerialPrograms/Source/PokemonSV/Programs/Farming/PokemonSV_AuctionFarmer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ void AuctionFarmer::reset_position(SingleSwitchProgramEnvironment& env, ProContr
378378
uint64_t read_next_bid(VideoStream& stream, ProControllerContext& context, Language language, bool high){
379379
// How much to cut off from the bid text in order to not read currencies and exclamation marks as numbers.
380380
// Values are pixels for a 1920x1080 screen, negative values are padding
381-
static const std::map<Language, std::pair<int8_t, int8_t>> cutoffs = {
381+
static const std::map<Language, std::pair<int, int>> cutoffs = {
382382
{ Language::English, {22, 6} },
383383
{ Language::Japanese, {-5, 54} },
384384
{ Language::Spanish, {6, 32} },

0 commit comments

Comments
 (0)