From 9cd617708d139c8b9df27cac39fc76c9185e5bcf Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 29 Jun 2021 16:04:05 -0700 Subject: [PATCH] Fix const size reference (same value) Same value, but different name. Cosmetic, but prevents future confusion. --- PKHeX.Core/Saves/SAV2Stadium.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/SAV2Stadium.cs b/PKHeX.Core/Saves/SAV2Stadium.cs index 595fa5805..74db9e968 100644 --- a/PKHeX.Core/Saves/SAV2Stadium.cs +++ b/PKHeX.Core/Saves/SAV2Stadium.cs @@ -63,7 +63,7 @@ public SAV2Stadium(byte[] data, bool japanese) : base(data, japanese, StadiumUti Box = BoxStart; } - public SAV2Stadium(bool japanese = false) : base(japanese, SaveUtil.SIZE_G1STAD) + public SAV2Stadium(bool japanese = false) : base(japanese, SaveUtil.SIZE_G2STAD) { Box = BoxStart; ClearBoxes();