1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2003-01-29 17:34:28 +00:00
parent 0c4a35fbcf
commit 7b9edd6090

View file

@ -343,7 +343,8 @@ void lcd_remove_cursor(void)
cursor.len=0; cursor.len=0;
up = lcdx_putc(cursor.x_pos, cursor.y_pos, cursor.text[0]); up = lcdx_putc(cursor.x_pos, cursor.y_pos, cursor.text[0]);
#ifdef SIMULATOR #ifdef SIMULATOR
lcd_update(); if(up)
lcd_update();
#endif #endif
} }
} }