mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- Accidentally committed debuging code.
This commit is contained in:
parent
8ee0554d56
commit
b14eded8d8
1 changed files with 0 additions and 2 deletions
|
@ -170,7 +170,6 @@ TArray<FString> I_GetSteamPath()
|
||||||
FString OSX_FindApplicationSupport();
|
FString OSX_FindApplicationSupport();
|
||||||
|
|
||||||
FString regPath = OSX_FindApplicationSupport() + "/Steam/config/config.vdf";
|
FString regPath = OSX_FindApplicationSupport() + "/Steam/config/config.vdf";
|
||||||
Printf("Reading %s\n", regPath.GetChars());
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
SteamInstallFolders = ParseSteamRegistry(regPath);
|
SteamInstallFolders = ParseSteamRegistry(regPath);
|
||||||
|
@ -209,7 +208,6 @@ TArray<FString> I_GetSteamPath()
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
FString candidate(SteamInstallFolders[i] + "/" + AppInfo[app].BasePath);
|
FString candidate(SteamInstallFolders[i] + "/" + AppInfo[app].BasePath);
|
||||||
Printf("Checking %s\n", candidate.GetChars());
|
|
||||||
if(stat(candidate, &st) == 0 && S_ISDIR(st.st_mode))
|
if(stat(candidate, &st) == 0 && S_ISDIR(st.st_mode))
|
||||||
result.Push(candidate);
|
result.Push(candidate);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue