Fix database server metadata UpdateCounter in MarkDirty (Thanks Moose for the catch)

This commit is contained in:
Thog 2020-02-29 16:43:16 +01:00
parent 6f01f88e7f
commit 91ac21c676

View file

@ -45,7 +45,8 @@ namespace Ryujinx.HLE.HOS.Services.Mii
_isDirty = true;
UpdateCounter++;
metadata.UpdateCounter++;
metadata.UpdateCounter = UpdateCounter;
}
private bool GetAtVirtualIndex(int index, out int realIndex, out StoreData storeData)