Skip to content

Commit

Permalink
gl33: fix gl33_framebuffer_finalize_read_requests()
Browse files Browse the repository at this point in the history
  • Loading branch information
Akaricchi committed Sep 2, 2024
1 parent c73aa60 commit c150f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/gl33/framebuffer_async_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void gl33_framebuffer_finalize_read_requests(void) {
gl33_framebuffer_process_read_requests();

for(int i = 0; i < ARRAY_SIZE(read_requests); ++i) {
auto rq = read_requests + 1;
auto rq = read_requests + i;
sync_read_request(rq, UINT64_MAX);

if(rq->sync) {
Expand Down

0 comments on commit c150f4c

Please sign in to comment.