Skip to content

Commit

Permalink
standalone: fix missed y scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
notaz committed Jan 25, 2025
1 parent 60afad4 commit 16b099b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/plugin_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ static void pl_vout_flip(const void *vram, int stride, int bgr24,

// offset
xoffs = x * pl_vout_scale_w;
doffs = xoffs + y * dstride;
doffs = xoffs + y * pl_vout_scale_h * dstride;

if (dims_changed)
flip_clear_counter = 3;
Expand Down

0 comments on commit 16b099b

Please sign in to comment.