summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/d_iwad.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/d_iwad.c b/src/d_iwad.c
index b37b8376..64f40b7d 100644
--- a/src/d_iwad.c
+++ b/src/d_iwad.c
@@ -285,8 +285,6 @@ static void CheckSteamEdition(void)
return;
}
- fprintf(stderr, "Found Steam in %s\n", install_path);
-
for (i=0; i<arrlen(steam_install_subdirs); ++i)
{
subpath = malloc(strlen(install_path)
@@ -294,16 +292,7 @@ static void CheckSteamEdition(void)
sprintf(subpath, "%s\\%s", install_path, steam_install_subdirs[i]);
- if (M_FileExists(subpath))
- {
- fprintf(stderr, "Steam IWADs in %s\n", subpath);
- AddIWADDir(subpath);
- }
- else
- {
- fprintf(stderr, "%s not found\n", subpath);
- free(subpath);
- }
+ AddIWADDir(subpath);
}
}