From 054efccf3f7b99e9c8f9875c1a2882fe5310d0aa Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 30 Nov 2016 08:49:30 -0800 Subject: [PATCH] Fix SnapCount reset Closes #537 --- PKHeX/Saves/SAV7.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX/Saves/SAV7.cs b/PKHeX/Saves/SAV7.cs index bf5feeb7a..ddd9c67c5 100644 --- a/PKHeX/Saves/SAV7.cs +++ b/PKHeX/Saves/SAV7.cs @@ -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