templates: Don't check for 32-bit OBS Studio

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2021-10-18 11:10:15 +02:00
parent e7b459fc6e
commit de5fb35544
1 changed files with 0 additions and 8 deletions

View File

@ -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');