Make Save Named State derive the name by the same logic as slot 0 would (using game name and possibly movie name)
This commit is contained in:
parent
f06c4e0091
commit
871ba80a76
|
@ -1787,7 +1787,7 @@ namespace BizHawk.MultiClient
|
|||
var sfd = new SaveFileDialog();
|
||||
string path = PathManager.SaveStatePrefix(Global.Game);
|
||||
sfd.InitialDirectory = path;
|
||||
sfd.FileName = "QuickSave0.State";
|
||||
sfd.FileName = PathManager.SaveStatePrefix(Global.Game) + "." + "QuickSave0.State";
|
||||
var file = new FileInfo(path);
|
||||
if (file.Directory.Exists == false)
|
||||
file.Directory.Create();
|
||||
|
|
Loading…
Reference in New Issue