mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Fix incorrect g1 trade trainer char reference
This commit is contained in:
parent
8f5f80b391
commit
01f1be6f89
2 changed files with 3 additions and 3 deletions
|
@ -106,7 +106,7 @@ public static class StringConverter12
|
|||
{
|
||||
if (data[0] == G1TradeOTCode)
|
||||
{
|
||||
result[0] = G1Terminator;
|
||||
result[0] = G1TradeOT;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -166,7 +166,7 @@ public static class StringConverter12
|
|||
int count = i;
|
||||
if (count == destBuffer.Length)
|
||||
return count;
|
||||
destBuffer[value.Length] = G1TerminatorCode;
|
||||
destBuffer[count] = G1TerminatorCode;
|
||||
return count + 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ public static class StringConverter2KOR
|
|||
{
|
||||
if (data[0] == G1TradeOTCode)
|
||||
{
|
||||
result[0] = G1Terminator;
|
||||
result[0] = G1TradeOT;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue