TAStudio: Don't erase states if they exist already when attaching an emulator instance (fixes #2057)

This commit is contained in:
alyosha-tas 2020-07-05 09:55:38 -04:00
parent d900053dad
commit ef0f4b2b96
1 changed files with 2 additions and 1 deletions

View File

@ -67,7 +67,8 @@ namespace BizHawk.Client.Common
throw new InvalidOperationException("Savestate size can not be zero!");
}
_states = new SortedList<int, byte[]>(MaxStates);
// don't erase states if they exist already (already loaded)
if ((_states == null) || (_states.Capacity == 0)) { _states = new SortedList<int, byte[]>(MaxStates); }
UpdateStateFrequency();
}