We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a0175 commit e90544dCopy full SHA for e90544d
src/NitroSharp/Saving/GameSaveManager.cs
@@ -22,8 +22,12 @@ internal class GameSaveManager
22
23
public GameSaveManager(Configuration configuration)
24
{
25
+ string localAppData = Environment.GetFolderPath(
26
+ Environment.SpecialFolder.LocalApplicationData,
27
+ Environment.SpecialFolderOption.Create
28
+ );
29
SaveDirectory = Path.Combine(
- Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
30
+ localAppData,
31
Path.Combine("Committee of Zero", configuration.ProductName)
32
);
33
SaveDirectory = Path.Combine(SaveDirectory, configuration.ProfileName);
0 commit comments