From b067688c8eeafe39f3ea2e8d275dc4edb65f3dfb Mon Sep 17 00:00:00 2001 From: kd-11 Date: Thu, 20 Nov 2025 01:45:03 +0300 Subject: [PATCH] rsx: Drop meaningless log message - This used to be a big deal a decade ago, now its just wasting CPU cycles and filling up log files --- rpcs3/Emu/RSX/Common/texture_cache_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Common/texture_cache_utils.h b/rpcs3/Emu/RSX/Common/texture_cache_utils.h index 8c5defdd0b..c34b73f7ba 100644 --- a/rpcs3/Emu/RSX/Common/texture_cache_utils.h +++ b/rpcs3/Emu/RSX/Common/texture_cache_utils.h @@ -1496,7 +1496,7 @@ namespace rsx void on_miss() { - rsx_log.warning("Cache miss at address 0x%X. This is gonna hurt...", get_section_base()); + // rsx_log.trace("Cache miss at address 0x%X. This is gonna hurt...", get_section_base()); m_tex_cache->on_miss(*derived()); }