mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +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 regPath = OSX_FindApplicationSupport() + "/Steam/config/config.vdf";
|
||||
Printf("Reading %s\n", regPath.GetChars());
|
||||
try
|
||||
{
|
||||
SteamInstallFolders = ParseSteamRegistry(regPath);
|
||||
|
@ -209,7 +208,6 @@ TArray<FString> I_GetSteamPath()
|
|||
{
|
||||
struct stat st;
|
||||
FString candidate(SteamInstallFolders[i] + "/" + AppInfo[app].BasePath);
|
||||
Printf("Checking %s\n", candidate.GetChars());
|
||||
if(stat(candidate, &st) == 0 && S_ISDIR(st.st_mode))
|
||||
result.Push(candidate);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue