Resuming WIP: InterpSettings now get deserialized and loaded

This commit is contained in:
N00MKRAD
2021-02-01 22:48:22 +01:00
parent dd79c5a2a8
commit d8eadba6a4
3 changed files with 55 additions and 4 deletions

View File

@@ -71,6 +71,9 @@ namespace Flowframes.Main
public static void LoadTempFolder (string tempFolderPath)
{
string resumeFolderPath = Path.Combine(tempFolderPath, Paths.resumeDir);
string interpSettingsPath = Path.Combine(resumeFolderPath, interpSettingsFilename);
InterpSettings interpSettings = new InterpSettings(File.ReadAllText(interpSettingsPath));
Program.mainForm.LoadBatchEntry(interpSettings);
}
static void LoadFilenameMap()