aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Program.cs
diff options
context:
space:
mode:
authorjtsshieh <[email protected]>2017-09-23 12:17:59 -0400
committerjtsshieh <[email protected]>2017-09-23 12:17:59 -0400
commitd29fbef31435aa455c374a5d07f9787dc9ef3251 (patch)
treecc326438fcac19ab9228ddf0738317e61b6b5057 /ShiftOS.Main/Program.cs
parentcf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0 (diff)
downloadshiftos-rewind-d29fbef31435aa455c374a5d07f9787dc9ef3251.tar.gz
shiftos-rewind-d29fbef31435aa455c374a5d07f9787dc9ef3251.tar.bz2
shiftos-rewind-d29fbef31435aa455c374a5d07f9787dc9ef3251.zip
Fixed things that fdd messed up and implemented the hijack screen
Diffstat (limited to 'ShiftOS.Main/Program.cs')
-rw-r--r--ShiftOS.Main/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Main/Program.cs b/ShiftOS.Main/Program.cs
index fd2ca89..a775714 100644
--- a/ShiftOS.Main/Program.cs
+++ b/ShiftOS.Main/Program.cs
@@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
-namespace HijackScreen
+namespace ShiftOS.Main
{
static class Program
{
@@ -16,7 +16,7 @@ namespace HijackScreen
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new newHijack());
+ Application.Run(new HijackScreen());
}
}
}