aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/TitleScreen.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-10-24 11:27:51 +0100
committerAlex-TIMEHACK <[email protected]>2017-10-24 11:27:51 +0100
commit3d2e297b43cbd7f99269c9a58b25651a83ccef3c (patch)
treeef636bc39af2b880af61acde98a2c5fb9e92cbaa /Histacom2/TitleScreen.cs
parente5f29e7b53322e11578acd0deb3b1d454998bb77 (diff)
parentaff052b475abc5d4035369a85fa471f62cad021b (diff)
downloadhistacom2-3d2e297b43cbd7f99269c9a58b25651a83ccef3c.tar.gz
histacom2-3d2e297b43cbd7f99269c9a58b25651a83ccef3c.tar.bz2
histacom2-3d2e297b43cbd7f99269c9a58b25651a83ccef3c.zip
Updated my fork!
Diffstat (limited to 'Histacom2/TitleScreen.cs')
-rw-r--r--Histacom2/TitleScreen.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Histacom2/TitleScreen.cs b/Histacom2/TitleScreen.cs
index ea06ce2..4e3ab01 100644
--- a/Histacom2/TitleScreen.cs
+++ b/Histacom2/TitleScreen.cs
@@ -11,6 +11,7 @@ using Histacom2.SaveDialogs;
using System.Runtime.InteropServices;
using System.Reflection;
using System.ComponentModel;
+using Histacom2.OS.WinXPBad;
namespace Histacom2
{
@@ -20,6 +21,7 @@ namespace Histacom2
public static Windows95 frm95;
public static Windows98 frm98;
+ public static WindowsXPBad frmBadXP;
public static string username;
public static string progress = "95";
@@ -90,6 +92,20 @@ namespace Histacom2
Hide();
break;
+ case "xpbad":
+ frmBadXP = new WindowsXPBad();
+ frmBadXP.TopMost = true;
+ frmBadXP.FormBorderStyle = FormBorderStyle.None;
+ frmBadXP.WindowState = FormWindowState.Maximized;
+ //if (vm_mode.Checked == true)
+ //{
+ // frm98.Size = new Size(Convert.ToInt32(VM_Width.Text), Convert.ToInt32(VM_Height.Text));
+ // frm98.FormBorderStyle = FormBorderStyle.Fixed3D;
+ //}
+ frmBadXP.Show();
+ Hide();
+
+ break;
default:
MessageBox.Show("WARNING! It looks like this save is corrupt!");
MessageBox.Show("We will now open the Save troubleshooter");