Latest Save Fix (#1043)

This seems to do it for me. Previously, it looped all the way to the
earliest save and loaded that. This stops the search at the first match
ordered by descending write time.
This commit is contained in:
ReignOfComputer
2017-04-10 12:34:12 +08:00
committed by Kurt
parent ad46176fd2
commit ef0348f341

View File

@@ -581,6 +581,7 @@ public static bool detectSaveFile(out string path, params string[] extra)
continue;
path = file;
return true;
}
catch (Exception e)
{