summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexManagerBase.cpp
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2023-12-11 18:00:34 -0500
committerLioncash <mai.iam2048@gmail.com>2023-12-11 18:00:34 -0500
commit49f44c133467fb004c08e3b84076e91105eed0eb (patch)
tree5df1d3dd4ad714c518bbe8bbde4515434930aeee /Source/Core/VideoCommon/VertexManagerBase.cpp
parentb48af86148585aa4611197d9e334c2c150d5e6b1 (diff)
VertexManagerBase: Resolve -Wsign-compare warning
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexManagerBase.cpp2
1 files changed, 1 insertions, 1 deletions
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<CustomPixelShader> custom_pixel_shader;
std::vector<std::string> custom_pixel_texture_names;
std::span<u8> 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];