Skip to content

Commit

Permalink
Respecting the bg_color argument when clearing a row
Browse files Browse the repository at this point in the history
  • Loading branch information
nkming2 committed Jul 13, 2014
1 parent f2ddb48 commit e2e8f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsc/com/lcd_console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void LcdConsole::PrintChar(const char ch, const uint16_t color,
{
do
{
PrintChar(' ');
PrintChar(' ', 0, bg_color);
} while (m_cursor_x != 0);
}
else
Expand Down

0 comments on commit e2e8f1e

Please sign in to comment.