aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/SaveSystem.cs
diff options
context:
space:
mode:
authorAren <[email protected]>2017-05-20 12:49:25 +0200
committerGitHub <[email protected]>2017-05-20 12:49:25 +0200
commitb9841ccabcc577dec863a0a8979a3415e7c385a0 (patch)
tree6ddfea504a836ec6dd43be43f5d7e84fa012a342 /TimeHACK.Engine/SaveSystem.cs
parentb9857d7aa6ed8d9b04e43e1ccf1342a62ca25a52 (diff)
downloadhistacom2-b9841ccabcc577dec863a0a8979a3415e7c385a0.tar.gz
histacom2-b9841ccabcc577dec863a0a8979a3415e7c385a0.tar.bz2
histacom2-b9841ccabcc577dec863a0a8979a3415e7c385a0.zip
Store saves in AppData instead of My Documents
Required for Windows Store support.
Diffstat (limited to 'TimeHACK.Engine/SaveSystem.cs')
-rw-r--r--TimeHACK.Engine/SaveSystem.cs2
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");
}
}