summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-12 10:04:45 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-12 11:16:15 -0400
commit01dc81cd943719dc0ba380774b332f6c2ee0d67e (patch)
tree7b3c45a09415c88e2c7818fd91f121ad814e4fdb
parent141e91ef1fc5ce6c487988c29c00e57fa6e52fb6 (diff)
downloadrockbox-01dc81cd943719dc0ba380774b332f6c2ee0d67e.tar.gz
rockbox-01dc81cd943719dc0ba380774b332f6c2ee0d67e.zip
rolo: hosted: Make display output non-glitchy
Change-Id: I63d6a28d67fa56d3541aaa121356c8ff2ce10bbe
-rw-r--r--firmware/target/hosted/rolo.c4
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)
79#endif 79#endif
80 80
81#ifdef HAVE_STORAGE_FLUSH 81#ifdef HAVE_STORAGE_FLUSH
82 lcd_puts(0, 1, "Flushing storage buffers"); 82 lcd_puts(0, 2, "Flushing storage buffers");
83 lcd_update(); 83 lcd_update();
84 storage_flush(); 84 storage_flush();
85#endif 85#endif
86 86
87 lcd_puts(0, 1, "Executing"); 87 lcd_puts(0, 3, "Executing");
88 lcd_update(); 88 lcd_update();
89#ifdef HAVE_REMOTE_LCD 89#ifdef HAVE_REMOTE_LCD
90 lcd_remote_puts(0, 1, "Executing"); 90 lcd_remote_puts(0, 1, "Executing");