Change pathing in manifest from / to \
This commit is contained in:
parent
1e9d2e52c9
commit
3c30c5066b
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ namespace LANCommander.PlaynitePlugin
|
||||||
Name = action.Name,
|
Name = action.Name,
|
||||||
Arguments = action.Arguments,
|
Arguments = action.Arguments,
|
||||||
Path = PlayniteApi.ExpandGameVariables(game, action.Path),
|
Path = PlayniteApi.ExpandGameVariables(game, action.Path),
|
||||||
WorkingDir = action.WorkingDirectory ?? game.InstallDirectory,
|
WorkingDir = action.WorkingDirectory.Replace('/', Path.DirectorySeparatorChar) ?? game.InstallDirectory,
|
||||||
IsPlayAction = action.IsPrimaryAction || isFirstAction
|
IsPlayAction = action.IsPrimaryAction || isFirstAction
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue