mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
Fix const size reference (same value)
Same value, but different name. Cosmetic, but prevents future confusion.
This commit is contained in:
parent
764e506ab5
commit
9cd617708d
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ namespace PKHeX.Core
|
|||
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();
|
||||
|
|
Loading…
Reference in a new issue