This commit is contained in:
adelikat 2014-06-01 16:53:34 +00:00
parent 2d6e526073
commit d4c0c64402
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ namespace BizHawk.Client.Common
// If Starting a new recording requires clearing sram it shoudl be done at a higher layer and not rely on all IMovies doing this
// Haven't removed it yet because I coudln't guarantee that power-on movies coudl live without it
// And the immediate fire is that Savestate movies are breaking
if (!Header.StartsFromSavestate)
if (!Header.StartsFromSavestate && Global.Emulator.SystemId != "WSWAN")
{
Global.Emulator.ClearSaveRam();
}
@ -126,7 +126,7 @@ namespace BizHawk.Client.Common
public void StartNewPlayback()
{
// See StartNewRecording for details as to why this savestate check is here
if (!Header.StartsFromSavestate)
if (!Header.StartsFromSavestate && Global.Emulator.SystemId != "WSWAN")
{
Global.Emulator.ClearSaveRam();
}