Skip to content

Commit

Permalink
4.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Meowmaritus committed Oct 13, 2023
1 parent 6e8dac8 commit a18d28f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DSAnimStudioNETCore/GameRoot.cs
Expand Up @@ -428,7 +428,7 @@ public static void Init(string assetPath, SoulsGames gameType, string scratchFol
if (gameType != lastGameType || forceReload)
{
ProjectPath = $"{Path.GetDirectoryName(assetPath)}/_DSAS_PROJECT.json";
DefaultGameDir = Path.GetFullPath(Path.GetDirectoryName(assetPath) + "\\..\\");
DefaultGameDir = Path.GetFullPath(Path.GetDirectoryName(assetPath) + (GameRoot.GameType is SoulsGames.DES ? "\\..\\..\\" : "\\..\\"));
if (!overrideInterrootPicker)
{
var directoryDialog = new TaeEditor.TaeGameDirPicker();
Expand Down
2 changes: 1 addition & 1 deletion DSAnimStudioNETCore/Main.cs
Expand Up @@ -24,7 +24,7 @@ namespace DSAnimStudio
/// </summary>
public class Main : Game
{
public const string VERSION = "4.9.6 [PUBLIC]";
public const string VERSION = "4.9.7 [PUBLIC]";

public static void GCCollect()
{
Expand Down

0 comments on commit a18d28f

Please sign in to comment.