Skip to content
Snippets Groups Projects
Commit e38bcd28 authored by deuce's avatar deuce
Browse files

Fix scrolling (borken in vmem_puttext update)

parent 475eefae
No related branches found
No related tags found
No related merge requests found
...@@ -530,7 +530,7 @@ static void scroll_text(int x1, int y1, int x2, int y2, int down) ...@@ -530,7 +530,7 @@ static void scroll_text(int x1, int y1, int x2, int y2, int down)
if(down) if(down)
vmem_puttext(x1,y1+1,x2,y2,tmp_buffer2); vmem_puttext(x1,y1+1,x2,y2,tmp_buffer2);
else else
vmem_puttext(x1,y1,x2,y2-1,tmp_buffer2+(((x2-x1)+1)*2)); vmem_puttext(x1,y1,x2,y2-1,tmp_buffer2+(((x2-x1)+1)));
} }
/****************************************************************************/ /****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment