Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Divert mode back-port #259

Merged
merged 13 commits into from
Jun 26, 2020
Prev Previous commit
Next Next commit
Fix off by 1 error
jeremypoulter committed Jun 18, 2020
commit b56db64d4e10d453fc50a15104556a2aaa4ad860
2 changes: 1 addition & 1 deletion src/lcd.cpp
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ typedef struct Message_s Message;
struct Message_s
{
Message *next;
char msg[LCD_MAX_LEN];
char msg[LCD_MAX_LEN + 1];
int x;
int y;
int time;