Thermal artifact, mid-quest message popups, sortmode from immediate to deferred, saving bugfixes

This commit is contained in:
Regalis
2015-11-19 19:21:48 +02:00
parent 9b08201972
commit 35f05376b0
21 changed files with 155 additions and 56 deletions
+2 -2
View File
@@ -10,13 +10,13 @@ namespace Barotrauma
{
public class SaveUtil
{
private const string SaveFolder = "Data/Saves/";
private static string SaveFolder = "Data"+Path.DirectorySeparatorChar+"Saves";
public delegate void ProgressDelegate(string sMessage);
public static void SaveGame(string fileName)
{
fileName = SaveFolder + fileName;
fileName = Path.Combine(SaveFolder, fileName);
string tempPath = Path.Combine(SaveFolder, "temp");