diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-07-22 21:55:20 +0100 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-07-22 21:55:20 +0100 |
| commit | c97b5bddf841573e92c67fd2d325ca44825351f0 (patch) | |
| tree | b9e2c5f7861799b7b5f209046f97052493565734 /TimeHACK.Main/TitleScreen.cs | |
| parent | cf4609d054ee554d7503c42322f9129f7423c4e4 (diff) | |
| parent | 7b12feef44adfcafd46d651adcd3e8fe11cb8523 (diff) | |
| download | histacom2-c97b5bddf841573e92c67fd2d325ca44825351f0.tar.gz histacom2-c97b5bddf841573e92c67fd2d325ca44825351f0.tar.bz2 histacom2-c97b5bddf841573e92c67fd2d325ca44825351f0.zip | |
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Main/TitleScreen.cs')
| -rw-r--r-- | TimeHACK.Main/TitleScreen.cs | 9 |
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(); } } } |
