From 49f44c133467fb004c08e3b84076e91105eed0eb Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 11 Dec 2023 18:00:34 -0500 Subject: [PATCH] VertexManagerBase: Resolve -Wsign-compare warning --- Source/Core/VideoCommon/VertexManagerBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index 65772f3dad..ac4446abba 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -598,7 +598,7 @@ void VertexManagerBase::Flush() std::optional custom_pixel_shader; std::vector custom_pixel_texture_names; std::span custom_pixel_shader_uniforms; - for (int i = 0; i < texture_names.size(); i++) + for (size_t i = 0; i < texture_names.size(); i++) { const std::string& texture_name = texture_names[i]; const u32 texture_unit = texture_units[i];