mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-19 07:01:09 +00:00
fix compilation of non-windows targets.
This commit is contained in:
parent
74f6ff0c03
commit
3614d03e1b
1 changed files with 2 additions and 2 deletions
|
@ -184,7 +184,7 @@ TArray<FString> I_GetSteamPath()
|
||||||
FString regPath = appSupportPath + "/Steam/config/config.vdf";
|
FString regPath = appSupportPath + "/Steam/config/config.vdf";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
SteamInstallFolders = ParseSteamRegistry(regPath);
|
SteamInstallFolders = ParseSteamRegistry(regPath.GetChars());
|
||||||
}
|
}
|
||||||
catch(class CRecoverableError& error)
|
catch(class CRecoverableError& error)
|
||||||
{
|
{
|
||||||
|
@ -207,7 +207,7 @@ TArray<FString> I_GetSteamPath()
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
SteamInstallFolders = ParseSteamRegistry(regPath);
|
SteamInstallFolders = ParseSteamRegistry(regPath.GetChars());
|
||||||
}
|
}
|
||||||
catch(class CRecoverableError &error)
|
catch(class CRecoverableError &error)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue