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:
parent
7182d77c05
commit
070050fd34
|
@ -3311,7 +3311,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
backupFile.Delete();
|
||||
}
|
||||
|
||||
file.CopyTo(backup);
|
||||
File.Move(path, backup);
|
||||
}
|
||||
|
||||
SaveState(path, quickSlotName, false);
|
||||
|
|
Loading…
Reference in New Issue