aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win98/Win98Apps
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-11-01 17:10:26 -0400
committerlempamo <[email protected]>2017-11-01 17:10:26 -0400
commit382f0167714bbcad00ab710fe7dcfa05eaeb88ac (patch)
tree72225c850aee6429da126c54909b9065fce826bb /Histacom2/OS/Win98/Win98Apps
parent7f09addce1993fe7bd30af98b852867b3bd6345f (diff)
downloadhistacom2-382f0167714bbcad00ab710fe7dcfa05eaeb88ac.tar.gz
histacom2-382f0167714bbcad00ab710fe7dcfa05eaeb88ac.tar.bz2
histacom2-382f0167714bbcad00ab710fe7dcfa05eaeb88ac.zip
fixed IOE
Diffstat (limited to 'Histacom2/OS/Win98/Win98Apps')
-rw-r--r--Histacom2/OS/Win98/Win98Apps/Story/Hack3.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Histacom2/OS/Win98/Win98Apps/Story/Hack3.cs b/Histacom2/OS/Win98/Win98Apps/Story/Hack3.cs
index c6513e2..2c7f687 100644
--- a/Histacom2/OS/Win98/Win98Apps/Story/Hack3.cs
+++ b/Histacom2/OS/Win98/Win98Apps/Story/Hack3.cs
@@ -172,7 +172,7 @@ namespace Histacom2.OS.Win98.Win98Apps.Story
SaveSystem.currentTheme = new BadXPTheme();
SaveSystem.CurrentSave.ThemeName = "badxp";
td.ParentForm.Close();
- foreach (Form frm in Application.OpenForms) if (frm is WinClassic) frm.Close();
+ Application.OpenForms.Cast<Form>().Where(x => !(x is WinClassic)).ToList().ForEach(x => x.Close());
Program.title.StartGame();
TitleScreen.frm98.Close();
return;