mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
VertexManagerBase: Resolve -Wsign-compare warning
This commit is contained in:
@ -598,7 +598,7 @@ void VertexManagerBase::Flush()
|
|||||||
std::optional<CustomPixelShader> custom_pixel_shader;
|
std::optional<CustomPixelShader> custom_pixel_shader;
|
||||||
std::vector<std::string> custom_pixel_texture_names;
|
std::vector<std::string> custom_pixel_texture_names;
|
||||||
std::span<u8> custom_pixel_shader_uniforms;
|
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 std::string& texture_name = texture_names[i];
|
||||||
const u32 texture_unit = texture_units[i];
|
const u32 texture_unit = texture_units[i];
|
||||||
|
Reference in New Issue
Block a user