From 59b0c09443eacd923a2254f0fd37a78c95823a38 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Tue, 20 Jun 2023 22:43:30 +0200 Subject: [PATCH] GS-hw: Fix Wunused-variable warning. --- pcsx2/GS/Renderers/HW/GSRendererHW.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/pcsx2/GS/Renderers/HW/GSRendererHW.cpp b/pcsx2/GS/Renderers/HW/GSRendererHW.cpp index da48363f6a..2f67d82159 100644 --- a/pcsx2/GS/Renderers/HW/GSRendererHW.cpp +++ b/pcsx2/GS/Renderers/HW/GSRendererHW.cpp @@ -5572,7 +5572,6 @@ void GSRendererHW::ReplaceVerticesWithSprite(const GSVector4i& unscaled_rect, co } else { - const float th = static_cast(1 << m_cached_ctx.TEX0.TH); const GSVector4 st = GSVector4(unscaled_uv_rect) / GSVector4(GSVector4i(unscaled_size).xyxy()); GSVector4::storel(&v[0].ST.S, st); GSVector4::storeh(&v[1].ST.S, st);