When doing backup savestates, rename the existing file to the backup name, instead of copying the file contents over! Big performance boost to that feature

This commit is contained in:
adelikat 2014-10-09 22:04:56 +00:00
parent 7182d77c05
commit 070050fd34
1 changed files with 1 additions and 1 deletions

View File

@ -3311,7 +3311,7 @@ namespace BizHawk.Client.EmuHawk
backupFile.Delete();
}
file.CopyTo(backup);
File.Move(path, backup);
}
SaveState(path, quickSlotName, false);