From ef14f28099756bf4bf34ca9d9f1d3cbd76e6ea64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 9 Mar 2023 00:26:45 +0100 Subject: [PATCH] Fix logspam --- Core/TextureReplacer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/TextureReplacer.cpp b/Core/TextureReplacer.cpp index 22ce25ebb1..31fd7edef0 100644 --- a/Core/TextureReplacer.cpp +++ b/Core/TextureReplacer.cpp @@ -517,7 +517,7 @@ void TextureReplacer::PopulateReplacement(ReplacedTexture *texture, u64 cachekey return; } - INFO_LOG(G3D, "Found: %s", hashfiles.c_str()); + // INFO_LOG(G3D, "Found: %s", hashfiles.c_str()); std::vector filenames; SplitString(hashfiles, '|', filenames); @@ -1208,7 +1208,6 @@ bool ReplacedTexture::CopyLevelTo(int level, void *out, int rowPitch) { }, 0, info.h, MIN_LINES_PER_THREAD); } - INFO_LOG(G3D, "Successfully copied texture level"); return true; }