Skip to content

Commit

Permalink
Fix scrolling bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kagamma committed Aug 3, 2023
1 parent 5a59a47 commit 37e63e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screen.pas
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ procedure RenderEditScrollUp;
Src := ScreenPointer + ScreenWidth;
Dst := ScreenPointer + ScreenWidth * 2;
Size := ScreenWidth * 2;
Move(Src[0], Dst[0], Size * (ScreenHeight - 3));
Move(Src[0], Dst[0], Size * (ScreenHeight - 2));
RenderEdit(True, False, False);
end;

Expand Down

0 comments on commit 37e63e8

Please sign in to comment.