Skip to content

Commit

Permalink
Update SAV1Stadium.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
kwsch authored Oct 10, 2020
1 parent bb65f2d commit 79f60d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PKHeX.Core/Saves/SAV1Stadium.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public string GetTeamName(int team)
var str = GetString(otOfs, Japanese ? 5 : 7);
if (string.IsNullOrWhiteSpace(str))
return name;
var idOfs = ofs + (Japanese ? 0xC : 0x8);
var idOfs = ofs + (Japanese ? 0x8 : 0xC);
var id = BigEndian.ToUInt16(Data, idOfs);
return $"{name} [{id:D5}:{str}]";
}
Expand Down

0 comments on commit 79f60d2

Please sign in to comment.