Skip to content

Commit

Permalink
Small fix for EmitQuadToTriangleListIndices (shadps4-emu#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blargle authored Sep 7, 2024
1 parent fda5689 commit 749fe92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video_core/renderer_vulkan/liverpool_to_vk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ void EmitQuadToTriangleListIndices(u8* out_ptr, u32 num_vertices) {
*out_data++ = i;
*out_data++ = i + 1;
*out_data++ = i + 2;
*out_data++ = i + 2;
*out_data++ = i;
*out_data++ = i + 2;
*out_data++ = i + 3;
}
}
Expand Down

0 comments on commit 749fe92

Please sign in to comment.