mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Fix a bug introduced in 91b52a1
, broken icons in the Archos Player simulator.
Change-Id: I2c4ef0828a9e44084f35b82ea71e430d0c14ecfb
This commit is contained in:
parent
ba3b6ceb4b
commit
7038c55893
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ void lcd_print_icon(int x, int icon_line, bool enable, char **icon)
|
|||
|
||||
for (; icon[row]; row++)
|
||||
{
|
||||
for (; icon[row][col]; col++)
|
||||
for (col = 0; icon[row][col]; col++)
|
||||
{
|
||||
switch (icon[row][col])
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue