aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/MineSweeper
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-08-29 20:33:11 -0600
committerAShifter <[email protected]>2017-08-29 20:33:11 -0600
commit59505ed4dd131afbd18c0b3e660c8c72815ba5a2 (patch)
treee9ac99508869680b2712219596a44f406ae2d860 /Histacom2/OS/Win95/Win95Apps/MineSweeper
parentb1689dea36e46933280bfcc0d186746dd6210c0f (diff)
downloadhistacom2-59505ed4dd131afbd18c0b3e660c8c72815ba5a2.tar.gz
histacom2-59505ed4dd131afbd18c0b3e660c8c72815ba5a2.tar.bz2
histacom2-59505ed4dd131afbd18c0b3e660c8c72815ba5a2.zip
Add WinXP and MultiOS WM
WM is currently working, though is in the middle of modification to work with multiple operating systems. Windows XP window template as well as resources have also been added, though window moving code has not been added yet.
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/MineSweeper')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs
index 9b6595c..2a03c7e 100644
--- a/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs
+++ b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs
@@ -123,7 +123,7 @@ namespace Histacom2.OS.Win95.Win95Apps
private void bestTimesToolStripMenuItem_Click(object sender, EventArgs e)
{
WindowManager wm = new WindowManager();
- wm.StartWin95(new MineBestTimes(), "Best Times", null, false, false, true, false);
+ wm.Init(new MineBestTimes(), "Best Times", null, false, false, true, false);
}
@@ -165,7 +165,7 @@ namespace Histacom2.OS.Win95.Win95Apps
private void customToolStripMenuItem_Click(object sender, EventArgs e)
{
level = "custom";
- new WindowManager().StartWin95(new CustomMinefield(this), "Custom Field", null, false, false, true, false);
+ new WindowManager().Init(new CustomMinefield(this), "Custom Field", null, false, false, true, false);
}
}
}