libobs: Fix sign mismatch

This commit is contained in:
jpark37 2022-04-04 00:20:28 -07:00 committed by Jim
parent c9e0d18ce1
commit 737696950d

View File

@ -378,7 +378,7 @@ stage_output_texture(struct obs_core_video *video, int cur_texture,
video->textures_copied[cur_texture] = true;
} else if (video->texture_converted) {
for (int i = 0; i < channel_count; i++) {
for (size_t i = 0; i < channel_count; i++) {
gs_stagesurf_t *copy = copy_surfaces[i];
if (copy) {
gs_stage_texture(copy, convert_textures[i]);