From 3d8476c204254300c5709a5b456a3574b430be31 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 18 Oct 2021 11:10:15 +0200 Subject: [PATCH] templates: Don't check for 32-bit OBS Studio --- templates/installer.iss.in | 8 -------- 1 file changed, 8 deletions(-) diff --git a/templates/installer.iss.in b/templates/installer.iss.in index 02dfca92..bc21f2fb 100644 --- a/templates/installer.iss.in +++ b/templates/installer.iss.in @@ -118,14 +118,6 @@ begin if (sInstallPath = '') then RegQueryStringValue(HKCU64, 'SOFTWARE\OBS Studio', '', sInstallPath); - // 4. If empty, try and find the 32-bit "Local Machine" installation of OBS Studio. - if (sInstallPath = '') then - RegQueryStringValue(HKLM32, 'SOFTWARE\OBS Studio', '', sInstallPath); - - // 5. If empty, try and find the 32-bit "Current User" installation of OBS Studio. - if (sInstallPath = '') then - RegQueryStringValue(HKCU32, 'SOFTWARE\OBS Studio', '', sInstallPath); - // 6. If empty, just use the default path. if (sInstallPath = '') then sInstallPath := ExpandConstant('{commonpf}\obs-studio');