Ensure the save header is flushed when committing

This commit is contained in:
Alex Barney 2018-10-22 12:51:30 -05:00
parent 7a7946a26c
commit e9f7556635

View file

@ -154,6 +154,7 @@ namespace LibHac.Save
headerStream.Position = 0;
headerStream.Write(cmac, 0, 0x10);
headerStream.Flush();
return true;
}