summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexManagerBase.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-12-12 03:43:12 +0100
committerGitHub <noreply@github.com>2023-12-12 03:43:12 +0100
commit2c6bf2d224f5f3732d53244de53be266bbec2ac3 (patch)
tree8646b0376662f7c9e0676adf63f29c2102ead4db /Source/Core/VideoCommon/VertexManagerBase.cpp
parent9326186d2c7c1bab72b1a681d76be2f4c0a7ecdb (diff)
parent0e51c0f8fc28052f819f5d940ef6d23150c22057 (diff)
Merge pull request #12394 from lioncash/compare
General: Resolve -Wsign-compare warnings
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];