aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/TitleScreen.cs
diff options
context:
space:
mode:
Diffstat (limited to 'TimeHACK.Main/TitleScreen.cs')
-rw-r--r--TimeHACK.Main/TitleScreen.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs
index afc8dab..8b9d0b4 100644
--- a/TimeHACK.Main/TitleScreen.cs
+++ b/TimeHACK.Main/TitleScreen.cs
@@ -8,6 +8,8 @@ namespace TimeHACK
{
public partial class TitleScreen : Form
{
+ System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection();
+
public TitleScreen()
{
InitializeComponent();
@@ -25,6 +27,9 @@ namespace TimeHACK
// Set GameVersion
gameversion.Text = "TimeHACK " + Program.gameID + " by AShifter";
+ // Initialize Font
+ pfc.AddFontFile(AppDomain.CurrentDomain.BaseDirectory + "\\LeviWindows.ttf");
+
// Start the VM Mode timer
vmModeTimer.Start();
}