- Accidentally committed debuging code.

This commit is contained in:
Braden Obrzut 2014-12-12 17:06:01 -05:00
parent 8ee0554d56
commit b14eded8d8

View file

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