diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-10-12 10:04:45 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-10-12 11:16:15 -0400 |
commit | 01dc81cd943719dc0ba380774b332f6c2ee0d67e (patch) | |
tree | 7b3c45a09415c88e2c7818fd91f121ad814e4fdb | |
parent | 141e91ef1fc5ce6c487988c29c00e57fa6e52fb6 (diff) | |
download | rockbox-01dc81c.tar.gz rockbox-01dc81c.zip |
rolo: hosted: Make display output non-glitchy
Change-Id: I63d6a28d67fa56d3541aaa121356c8ff2ce10bbe
-rw-r--r-- | firmware/target/hosted/rolo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/hosted/rolo.c b/firmware/target/hosted/rolo.c index 9c8809aab4..229a928c84 100644 --- a/firmware/target/hosted/rolo.c +++ b/firmware/target/hosted/rolo.c @@ -79,12 +79,12 @@ int rolo_load(const char* filename) #endif #ifdef HAVE_STORAGE_FLUSH - lcd_puts(0, 1, "Flushing storage buffers"); + lcd_puts(0, 2, "Flushing storage buffers"); lcd_update(); storage_flush(); #endif - lcd_puts(0, 1, "Executing"); + lcd_puts(0, 3, "Executing"); lcd_update(); #ifdef HAVE_REMOTE_LCD lcd_remote_puts(0, 1, "Executing"); |