From 8b08f82dc720848904b8a3d8a13dff779d6c119e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 19 Jul 2018 22:38:28 -0400 Subject: [PATCH] maxwell_3d: Remove unused variable within GetStageTextures() --- src/video_core/engines/maxwell_3d.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index dfbf80abdb..d7328ff39b 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -317,8 +317,6 @@ std::vector Maxwell3D::GetStageTextures(Regs::ShaderSt auto& tex_info_buffer = fragment_shader.const_buffers[regs.tex_cb_index]; ASSERT(tex_info_buffer.enabled && tex_info_buffer.address != 0); - GPUVAddr tic_base_address = regs.tic.TICAddress(); - GPUVAddr tex_info_buffer_end = tex_info_buffer.address + tex_info_buffer.size; // Offset into the texture constbuffer where the texture info begins.