summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-29 17:34:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-29 17:34:28 +0000
commit7b9edd6090336c0133ed76469d0972008b74d068 (patch)
tree46b17cad9122dddd1e3eae19e35cf03d86ef0861 /firmware
parent0c4a35fbcfb2879c5352f26e172a9635698440ff (diff)
downloadrockbox-7b9edd6090336c0133ed76469d0972008b74d068.tar.gz
rockbox-7b9edd6090336c0133ed76469d0972008b74d068.zip
bring back the functionality with the conditional update on remove cursor
in the sim git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3192 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-player.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-player.c b/firmware/drivers/lcd-player.c
index 738816c4dc..c5915af9fa 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -343,7 +343,8 @@ void lcd_remove_cursor(void)
343 cursor.len=0; 343 cursor.len=0;
344 up = lcdx_putc(cursor.x_pos, cursor.y_pos, cursor.text[0]); 344 up = lcdx_putc(cursor.x_pos, cursor.y_pos, cursor.text[0]);
345#ifdef SIMULATOR 345#ifdef SIMULATOR
346 lcd_update(); 346 if(up)
347 lcd_update();
347#endif 348#endif
348 } 349 }
349} 350}