TAStudio: Don't erase states if they exist already when attaching an emulator instance (fixes #2057)
This commit is contained in:
parent
d900053dad
commit
ef0f4b2b96
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue