From 605992f2940b44e4ee581bde5897467113aa0f09 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 12 Sep 2020 00:35:38 +1000 Subject: [PATCH] Fix Android build --- src/core/gpu_hw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index e1c0c60f9..b4b937bda 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -1036,7 +1036,7 @@ void GPU_HW::DrawRendererStats(bool is_idle_frame) ImGui::TextUnformatted("Texture Filtering:"); ImGui::NextColumn(); - ImGui::TextColored((m_texture_filtering != GPUTextureFilter::Nearest) ? active_color : inactive_color, + ImGui::TextColored((m_texture_filtering != GPUTextureFilter::Nearest) ? active_color : inactive_color, "%s", Settings::GetTextureFilterDisplayName(m_texture_filtering)); ImGui::NextColumn();