diff options
Diffstat (limited to 'Histacom2')
| -rw-r--r-- | Histacom2/Histacom2.csproj | 12 | ||||
| -rw-r--r-- | Histacom2/OS/Win98/Win98Apps/Story/Hack3.cs | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Histacom2/Histacom2.csproj b/Histacom2/Histacom2.csproj index 4fc6c37..1c34422 100644 --- a/Histacom2/Histacom2.csproj +++ b/Histacom2/Histacom2.csproj @@ -13,7 +13,7 @@ <FileAlignment>512</FileAlignment> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <IsWebBootstrapper>false</IsWebBootstrapper> - <PublishUrl>C:\Users\Logan\Desktop\</PublishUrl> + <PublishUrl>C:\Users\lempamo\Desktop\</PublishUrl> <Install>true</Install> <InstallFrom>Disk</InstallFrom> <UpdateEnabled>false</UpdateEnabled> @@ -25,15 +25,15 @@ <MapFileExtensions>true</MapFileExtensions> <SupportUrl>http://www.ashifter.ml/histacom/forum</SupportUrl> <TargetCulture>en</TargetCulture> - <ProductName>HistacomCS</ProductName> - <PublisherName>HistacomCS Development Team</PublisherName> + <ProductName>Histacom 2.0</ProductName> + <PublisherName>Histacom 2.0 Development Team</PublisherName> <WebPage>publish.htm</WebPage> - <ApplicationRevision>3</ApplicationRevision> - <ApplicationVersion>2.0.0.3</ApplicationVersion> + <ApplicationRevision>0</ApplicationRevision> + <ApplicationVersion>2.1.0.0</ApplicationVersion> <UseApplicationTrust>true</UseApplicationTrust> <CreateDesktopShortcut>true</CreateDesktopShortcut> <PublishWizardCompleted>true</PublishWizardCompleted> - <BootstrapperEnabled>true</BootstrapperEnabled> + <BootstrapperEnabled>false</BootstrapperEnabled> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PlatformTarget>AnyCPU</PlatformTarget> 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; |
