修复设置丢失导致存档未按顺序继续存档

This commit is contained in:
ZouJin 2023-10-04 13:58:06 +08:00
parent e39157445c
commit 8e822cb3ef
2 changed files with 6 additions and 0 deletions

View File

@ -232,6 +232,7 @@ namespace VPet_Simulator.Windows.Interface
public int SaveTimes
{
get => GetInt("savetimes", 100000);
set => SetInt("savetimes", value);
}
private int presslength;

View File

@ -287,6 +287,11 @@ namespace VPet_Simulator.Windows
return i;
return 0;
}).ToList();
int.TryParse(ds.Last().Split('_')[1].Split('.')[0], out int lastid);
if (Set.SaveTimes < lastid)
{
Set.SaveTimes = lastid;
}
for (int i = ds.Count - 1; i >= 0; i--)
{
var latestsave = ds[i];