diff options
author | William Wilgus <me.theuser@yahoo.com> | 2018-07-28 15:36:13 +0200 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2018-07-28 15:36:13 +0200 |
commit | 8fb1740a78f1f8a41cdfdbc644ab2db7599d3f43 (patch) | |
tree | 11293a24999e40f8c407a17b0fddac98504c0405 /firmware | |
parent | 568b81202ebd24a3f7e9efe0558b5f6beed05b44 (diff) |
Fix scroll_engine truncation
fix one off error
Change-Id: I9b3b23c9f6c36107e73e511d8cb1bc5cd987e765
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/export/scroll_engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/scroll_engine.h b/firmware/export/scroll_engine.h index ee2dfb664b..1326812265 100644 --- a/firmware/export/scroll_engine.h +++ b/firmware/export/scroll_engine.h @@ -67,7 +67,7 @@ extern bool lcd_remote_scroll_now(struct scrollinfo *scroll); struct scrollinfo { struct viewport* vp; - char linebuffer[(SCROLL_LINE_SIZE / 2) - 1]; + char linebuffer[(SCROLL_LINE_SIZE / 2) - SCROLL_SPACING]; const char *line; /* rectangle for the line */ int x, y; /* relative to the viewort */ |