mirror of
https://github.com/YellowberryHN/WACCALauncher
synced 2024-11-13 18:10:54 +01:00
what do you know, stuff was indeed broken.
This commit is contained in:
parent
d7beb37d0a
commit
c7dab1a42b
@ -3,7 +3,9 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace WACCALauncher
|
namespace WACCALauncher
|
||||||
@ -43,6 +45,10 @@ namespace WACCALauncher
|
|||||||
if(Screen.AllScreens.Length > 1)
|
if(Screen.AllScreens.Length > 1)
|
||||||
CurrentScreen = Screen.AllScreens[1];
|
CurrentScreen = Screen.AllScreens[1];
|
||||||
|
|
||||||
|
// when running as system shell, we must set our working directory manually
|
||||||
|
if(Directory.GetCurrentDirectory() == Environment.GetFolderPath(Environment.SpecialFolder.System))
|
||||||
|
Directory.SetCurrentDirectory(Path.GetPathRoot(Assembly.GetExecutingAssembly().Location));
|
||||||
|
|
||||||
Application.EnableVisualStyles();
|
Application.EnableVisualStyles();
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
Application.Run(new MainForm());
|
Application.Run(new MainForm());
|
||||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("0.9.0.0")]
|
[assembly: AssemblyVersion("0.9.0.1")]
|
||||||
[assembly: AssemblyFileVersion("0.9.0.0")]
|
[assembly: AssemblyFileVersion("0.9.0.1")]
|
||||||
|
Loading…
Reference in New Issue
Block a user