From 68700103519e4e3cc8258e9a2cd5e48709ac4b39 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 16 Jun 2024 21:15:37 +1000 Subject: [PATCH] GPU/HW: Remove log spam --- src/core/gpu_hw.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index 96644b534..db6ed88f0 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -3134,11 +3134,7 @@ void GPU_HW::DispatchRenderCommand() void GPU_HW::UpdateCLUT(GPUTexturePaletteReg reg, bool clut_is_8bit) { - // Not done in HW - GL_INS_FMT("Reloading CLUT from {},{}, {} not implemented", reg.GetXBase(), reg.GetYBase(), - clut_is_8bit ? "8-bit" : "4-bit"); - - // But need to forward through to SW if using that for readbacks + // Not done in HW, but need to forward through to SW if using that for readbacks if (m_sw_renderer) { GPUBackendUpdateCLUTCommand* cmd = m_sw_renderer->NewUpdateCLUTCommand();