diff --git a/Call-of-Duty.iss b/Call-of-Duty.iss index f323ea6..6121ac8 100644 --- a/Call-of-Duty.iss +++ b/Call-of-Duty.iss @@ -6,6 +6,7 @@ #define GameNameEXE "CoDSP" ; Название exe файла игры #define GameVer "1.3" ; Версия игры #define GameAppIdSteam "2620" ; Ид игры в стиме +#define GameAppIdSteam1 "2640" ; Ид игры в стиме ; От ситуации зависит #define AppDescription "Русификатор текста и звука" ; Описание программы #define Typ "Russificier" ; Тип приложения @@ -177,7 +178,14 @@ begin //begin // Log('Detected GOG installation: ' + InstallationPath); //end - else + else + if RegQueryStringValue( + HKLM64, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App {#GameAppIdSteam1}', + 'InstallLocation', InstallationPath) then + begin + Log('Detected Steam1 installation: ' + InstallationPath); + end + else begin if IsWin64 then InstallationPath := ExpandConstant('{commonpf64}') else InstallationPath := ExpandConstant('{commonpf32}');