Fixed order of code in Program.cs causing exception from creating windows form before SetCompatibleTextRenderingDefault, changed dialog boxes a bit and cleaned up validation code in SelectFolderForm

This commit is contained in:
PNWParksFan
2018-02-21 00:34:49 -08:00
Unverified
parent d7938dd1d8
commit d82c34c542
3 changed files with 12 additions and 15 deletions
+8 -7
View File
@@ -14,12 +14,6 @@ namespace CodeWalker
[STAThread]
static void Main(string[] args)
{
// Always check the GTA folder first thing
if(!GTAFolder.UpdateGTAFolder(Properties.Settings.Default.RememberGTAFolder))
{
MessageBox.Show("Could not load CodeWalker because no GTA 5 folder was selected. CodeWalker will now exit.", "GTA 5 Folder Not Found", MessageBoxButtons.OK, MessageBoxIcon.Stop);
return;
}
bool menumode = false;
bool explorermode = false;
@@ -42,11 +36,18 @@ namespace CodeWalker
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
// Always check the GTA folder first thing
if (!GTAFolder.UpdateGTAFolder(Properties.Settings.Default.RememberGTAFolder))
{
MessageBox.Show("Could not load CodeWalker because no GTA 5 folder was selected. CodeWalker will now exit.", "GTA 5 Folder Not Found", MessageBoxButtons.OK, MessageBoxIcon.Stop);
return;
}
#if !DEBUG
try
{
#endif
if (menumode)
if (menumode)
{
Application.Run(new MenuForm());
}