Skip to content
Snippets Groups Projects
Commit 74ee5368 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

psychedelic: fix overshooting of the destination widget

When increasing we go from 0 to pitch-1 but when decreasing we were going from
pitch to 1.
parent 79c8a34d
No related branches found
No related tags found
No related merge requests found
......@@ -202,11 +202,11 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
if( p_sys->yinc == 1 ) \
ny= y; \
else \
ny = p_converted->p[plane].i_visible_lines-y; \
ny = p_converted->p[plane].i_visible_lines-y -1; \
if( p_sys->xinc == 1 ) \
nx = x; \
else \
nx = p_converted->p[plane].i_visible_pitch-x; \
nx = p_converted->p[plane].i_visible_pitch-x -1; \
p_outpic->p[plane].p_pixels[(p_sys->x*b+nx)+(ny+p_sys->y*b)*p_outpic->p[plane].i_pitch ] = p_converted->p[plane].p_pixels[y*p_converted->p[plane].i_pitch+x]; \
} }
copyimage( Y_PLANE, 2 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment