From b14eded8d8f6d4e756299f43768178dbe188b4ec Mon Sep 17 00:00:00 2001 From: Braden Obrzut Date: Fri, 12 Dec 2014 17:06:01 -0500 Subject: [PATCH] - Accidentally committed debuging code. --- src/sdl/i_steam.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sdl/i_steam.cpp b/src/sdl/i_steam.cpp index f8b4c07d9c..23e74af5a5 100644 --- a/src/sdl/i_steam.cpp +++ b/src/sdl/i_steam.cpp @@ -170,7 +170,6 @@ TArray 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 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); }