From 0a503f4af910242e20e77c24de2937ecc1235199 Mon Sep 17 00:00:00 2001 From: tankefugl Date: Sun, 7 May 2006 12:39:52 +0000 Subject: [PATCH] o Updated the installer -- it now checks whether Steam is running or not git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@462 67975925-1194-0748-b3d5-c16f83f1a3a1 --- releases/3.2.0/install/steam installer.iss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/releases/3.2.0/install/steam installer.iss b/releases/3.2.0/install/steam installer.iss index 72f1453..a390b17 100644 --- a/releases/3.2.0/install/steam installer.iss +++ b/releases/3.2.0/install/steam installer.iss @@ -16,7 +16,7 @@ WizardImageFile=v:\install\images\LrgImage.bmp WizardSmallImageFile=v:\install\images\SmlImage.bmp [Files] -;Source: "v:\install\config\config.cfg"; DestDir: {app}\nsp\; Flags: confirmoverwrite +Source: "v:\install\config\*.*"; DestDir: {app}\nsp\; Flags: confirmoverwrite ;Source: "v:\install\ns\*.*"; DestDir: "{app}\nsp"; Flags: ignoreversion recursesubdirs Source: "v:\install\ns-diff\*.*"; DestDir: "{app}\nsp"; Flags: ignoreversion recursesubdirs ;Source: "E:\ns21install\fmod.dll"; DestDir: "{app}"; Flags: ignoreversion @@ -63,11 +63,11 @@ var mbResult: Integer; begin bResult:=true; - // if ( CheckForMutexes('__SteamBootstrapperApp__')) then - //begin - // MsgBox( 'STEAM is currently running, please stop STEAM before running this setup.' , mbInformation, MB_OK ); - // bResult := false; - //end; + if ( CheckForMutexes('__SteamBootstrapperApp__')) then + begin + MsgBox( 'STEAM is currently running, please stop STEAM before running this setup.' , mbInformation, MB_OK ); + bResult := false; + end; sSteamPath := GetSteamDir(); sWonPath := GetWonDir(); if ((Length(sSteamPath) < 1) and (Length(sWonPath) < 1) and bResult) then