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();