diff options
| author | Aren <[email protected]> | 2017-05-20 12:49:25 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-05-20 12:49:25 +0200 |
| commit | b9841ccabcc577dec863a0a8979a3415e7c385a0 (patch) | |
| tree | 6ddfea504a836ec6dd43be43f5d7e84fa012a342 | |
| parent | b9857d7aa6ed8d9b04e43e1ccf1342a62ca25a52 (diff) | |
| download | histacom2-b9841ccabcc577dec863a0a8979a3415e7c385a0.tar.gz histacom2-b9841ccabcc577dec863a0a8979a3415e7c385a0.tar.bz2 histacom2-b9841ccabcc577dec863a0a8979a3415e7c385a0.zip | |
Store saves in AppData instead of My Documents
Required for Windows Store support.
| -rw-r--r-- | TimeHACK.Engine/SaveSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TimeHACK.Engine/SaveSystem.cs b/TimeHACK.Engine/SaveSystem.cs index c6e19a2..2016110 100644 --- a/TimeHACK.Engine/SaveSystem.cs +++ b/TimeHACK.Engine/SaveSystem.cs @@ -16,7 +16,7 @@ namespace TimeHACK.Engine { get { - return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "TimeHACK"); + return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "TimeHACK"); } } |
