mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 17:05:19 -05:00
@@ -475,7 +475,7 @@ public ushort PokeFinderCameraVersion
|
||||
public bool PokeFinderGyroFlag
|
||||
{
|
||||
get { return BitConverter.ToUInt16(Data, PokeFinderSave + 0x02) == 1; }
|
||||
set { BitConverter.GetBytes((ushort)(value ? 1 : 0)).CopyTo(Data, PokeFinderSave + 0x04); }
|
||||
set { BitConverter.GetBytes((ushort)(value ? 1 : 0)).CopyTo(Data, PokeFinderSave + 0x02); }
|
||||
}
|
||||
public uint PokeFinderSnapCount
|
||||
{
|
||||
@@ -506,7 +506,7 @@ public uint PokeFinderThumbsHighValue
|
||||
BitConverter.GetBytes(value).CopyTo(Data, PokeFinderSave + 0x10);
|
||||
|
||||
if (value > PokeFinderThumbsTotalValue)
|
||||
PokeFinderThumbsHighValue = value;
|
||||
PokeFinderThumbsTotalValue = value;
|
||||
}
|
||||
}
|
||||
public ushort PokeFinderTutorialFlags
|
||||
|
||||
Reference in New Issue
Block a user