diff --git a/PuzzlePlayer/PuzzlePlayer.cs b/PuzzlePlayer/PuzzlePlayer.cs
index 9f617b41879335126098755dcfe0938127aec0da..c1261712eb5d524b1ac59f6cabe1e1f7bf23d5e8 100644
--- a/PuzzlePlayer/PuzzlePlayer.cs
+++ b/PuzzlePlayer/PuzzlePlayer.cs
@@ -10,7 +10,7 @@ namespace PuzzlePlayer_Namespace
     {
         internal static void Main(string[] args)
         {
-            Application.Run(new PuzzleForm(new Binary()));
+            Application.Run(new MainForm());
         }
     }
 
diff --git a/PuzzlePlayer/SettingForm.cs b/PuzzlePlayer/SettingForm.cs
index 1030962d8b24c369fd39dc6f8d8455644fb84baa..d1f391b080185db38b180a8a003a7a047be7039c 100644
--- a/PuzzlePlayer/SettingForm.cs
+++ b/PuzzlePlayer/SettingForm.cs
@@ -183,11 +183,7 @@ namespace PuzzlePlayer_Namespace
                 control.BackColor = primaryColor;
             }
 
-            try
-            {
-                control.Font = mainFont;
-            }
-            catch (Exception ex) { }
+            control.Font = mainFont;
 
             foreach (Control childControl in control.Controls)
             {