diff options
| author | AShifter <[email protected]> | 2017-08-29 20:33:11 -0600 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-08-29 20:33:11 -0600 |
| commit | 59505ed4dd131afbd18c0b3e660c8c72815ba5a2 (patch) | |
| tree | e9ac99508869680b2712219596a44f406ae2d860 /Histacom2/Program.cs | |
| parent | b1689dea36e46933280bfcc0d186746dd6210c0f (diff) | |
| download | histacom2-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/Program.cs')
| -rw-r--r-- | Histacom2/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Histacom2/Program.cs b/Histacom2/Program.cs index f978b90..97fee5f 100644 --- a/Histacom2/Program.cs +++ b/Histacom2/Program.cs @@ -69,9 +69,9 @@ namespace Histacom2 { if (SaveSystem.CurrentSave.CurrentOS == "95") { - WinClassic app = wm.StartWin95(new Win95WindowsExplorer(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true, true); + WinClassic app = wm.Init(new Win95WindowsExplorer(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true, true); } else { - WinClassic app = wm.StartWin95(new WinClassicWindowsExplorer(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true, true); + WinClassic app = wm.Init(new WinClassicWindowsExplorer(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true, true); } try |
