mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-26 05:51:30 +00:00
fix compilation of non-windows targets.
This commit is contained in:
parent
603ab5dd73
commit
41a52f0973
1 changed files with 2 additions and 2 deletions
|
@ -184,7 +184,7 @@ TArray<FString> I_GetSteamPath()
|
|||
FString regPath = appSupportPath + "/Steam/config/config.vdf";
|
||||
try
|
||||
{
|
||||
SteamInstallFolders = ParseSteamRegistry(regPath);
|
||||
SteamInstallFolders = ParseSteamRegistry(regPath.GetChars());
|
||||
}
|
||||
catch(class CRecoverableError& error)
|
||||
{
|
||||
|
@ -207,7 +207,7 @@ TArray<FString> I_GetSteamPath()
|
|||
|
||||
try
|
||||
{
|
||||
SteamInstallFolders = ParseSteamRegistry(regPath);
|
||||
SteamInstallFolders = ParseSteamRegistry(regPath.GetChars());
|
||||
}
|
||||
catch(class CRecoverableError &error)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue