aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/SaveSystem.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-10-20 16:35:53 -0400
committerlempamo <[email protected]>2017-10-20 16:35:53 -0400
commit70c63256ccab2b3cfc6a0dc1b0591b26932a2d10 (patch)
tree565afabbe71dc50d943f318647686f0d0152852a /Histacom2.Engine/SaveSystem.cs
parentbe4b7bf58fae3c0c430c25c5a110e8aa41b6b52c (diff)
downloadhistacom2-70c63256ccab2b3cfc6a0dc1b0591b26932a2d10.tar.gz
histacom2-70c63256ccab2b3cfc6a0dc1b0591b26932a2d10.tar.bz2
histacom2-70c63256ccab2b3cfc6a0dc1b0591b26932a2d10.zip
badxp start menu stuff
Diffstat (limited to 'Histacom2.Engine/SaveSystem.cs')
-rw-r--r--Histacom2.Engine/SaveSystem.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/Histacom2.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs
index 48fec8a..3c54aaf 100644
--- a/Histacom2.Engine/SaveSystem.cs
+++ b/Histacom2.Engine/SaveSystem.cs
@@ -129,7 +129,13 @@ namespace Histacom2.Engine
save.ExperiencedStories = new List<string>();
if (DevMode == true)
{
- if (ProfileName == "98")
+ if (ProfileName == "xpbad")
+ {
+ save.CurrentOS = "xpbad";
+ save.ThemeName = "badxp";
+ currentTheme = new BadXPTheme();
+ }
+ else if (ProfileName == "98")
{
save.CurrentOS = "98";
save.ThemeName = "default98";
@@ -717,6 +723,9 @@ namespace Histacom2.Engine
case "insidepc":
currentTheme = new InsideComputerTheme();
break;
+ case "badxp":
+ currentTheme = new BadXPTheme();
+ break;
}
}
}