From 794c3c4b38db427efda62261a71ece314c631cd8 Mon Sep 17 00:00:00 2001 From: Dalton-V Date: Wed, 10 Jun 2026 21:43:33 -0500 Subject: [PATCH] Alpha sorting was actually using the gmax field --- SerialPrograms/Source/Pokemon/Pokemon_CollectedPokemonInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SerialPrograms/Source/Pokemon/Pokemon_CollectedPokemonInfo.cpp b/SerialPrograms/Source/Pokemon/Pokemon_CollectedPokemonInfo.cpp index ebcd084fd0..ce59a7201b 100644 --- a/SerialPrograms/Source/Pokemon/Pokemon_CollectedPokemonInfo.cpp +++ b/SerialPrograms/Source/Pokemon/Pokemon_CollectedPokemonInfo.cpp @@ -64,7 +64,7 @@ bool operator<(const std::optional& lhs, const std::option break; case SortingRuleType::Alpha: if (lhs->alpha != rhs->alpha){ - return lhs->gmax != preference.reverse; + return lhs->alpha != preference.reverse; } break; case SortingRuleType::Ball_Slug: