aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/TitleScreen.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-07-22 15:35:30 -0400
committerlempamo <[email protected]>2017-07-22 15:35:30 -0400
commit7b12feef44adfcafd46d651adcd3e8fe11cb8523 (patch)
treec291216b6e30a94100189567b70372caa9c3e17a /TimeHACK.Main/TitleScreen.cs
parent845d40b0b9cd3ed2d14016a7d3cb5ce5a521a369 (diff)
downloadhistacom2-7b12feef44adfcafd46d651adcd3e8fe11cb8523.tar.gz
histacom2-7b12feef44adfcafd46d651adcd3e8fe11cb8523.tar.bz2
histacom2-7b12feef44adfcafd46d651adcd3e8fe11cb8523.zip
more achievement things
Diffstat (limited to 'TimeHACK.Main/TitleScreen.cs')
-rw-r--r--TimeHACK.Main/TitleScreen.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs
index 2a3b35c..ef14a73 100644
--- a/TimeHACK.Main/TitleScreen.cs
+++ b/TimeHACK.Main/TitleScreen.cs
@@ -159,6 +159,7 @@ namespace TimeHACK
gameversion.Font = new Font(pfc.Families[0], 16F, FontStyle.Bold, GraphicsUnit.Point, (0));
ProgramsToolStripMenuItem.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
DocumentsToolStripMenuItem.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ achievementsToolStripMenuItem.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
SettingsToolStripMenuItem.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
HelpToolStripMenuItem.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
ShutdownToolStripMenuItem.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
@@ -269,11 +270,6 @@ namespace TimeHACK
loadGameBox = new LoadGameDialog();
loadGameBox.ShowDialog();
- //var result = LoadSave();
- //if(result == false)
- //{
- // MessageBox.Show(caption: "No save found.", text: "No save was found on your system. However, we have created a new one, and we will start it up for you.");
- //}
if (loadGameBox.successful == true)
{
LoadSave();
@@ -331,7 +327,8 @@ namespace TimeHACK
private void achievementsToolStripMenuItem_Click(object sender, EventArgs e)
{
-
+ AchievementScreen achievelist = new AchievementScreen();
+ achievelist.ShowDialog();
}
}
}