diff options
author | 2019-06-08 13:11:52 +0300 | |
---|---|---|
committer | 2019-06-08 13:11:52 +0300 | |
commit | 613622e8cb3c1d32c50e19d7f446d0c00c91250e (patch) | |
tree | 5ff93473359c98ad893035915523936d7521b129 /src | |
parent | 6bb0199b481f6e31238618350b7d70df91a6908e (diff) | |
download | usurpation-613622e8cb3c1d32c50e19d7f446d0c00c91250e.tar.gz usurpation-613622e8cb3c1d32c50e19d7f446d0c00c91250e.tar.bz2 usurpation-613622e8cb3c1d32c50e19d7f446d0c00c91250e.zip |
Screen: changed delta from 2ms to 2s.
Signed-off-by: Ramūnas Mažeikis <ramunasnezinomas@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/device/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/screen.cpp b/src/device/screen.cpp index d59b98d..cf1428a 100644 --- a/src/device/screen.cpp +++ b/src/device/screen.cpp @@ -13,7 +13,7 @@ static char empty_string[] = ""; void display_status_init(OLEDDisplay *screen, struct display_status *status, char *msg) { - status->delta = 2; /* Currently default */ + status->delta = 2000; /* Currently default */ status->screen = screen; init_msg(msg, strlen(msg)); status->message = msg; |