1
0
Fork 0
forked from len0rd/rockbox

Comment out lcd_drawline() DEBUGF messages which show in various simulators

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24784 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomer Shalev 2010-02-20 06:42:45 +00:00
parent 950b2dfa2c
commit bc8cefd1a4
6 changed files with 12 additions and 12 deletions

View file

@ -351,14 +351,14 @@ void lcd_drawline(int x1, int y1, int x2, int y2)
deltay = abs(y2 - y1);
if (deltay == 0)
{
DEBUGF("lcd_drawline() called for horizontal line - optimisation.\n");
/* DEBUGF("lcd_drawline() called for horizontal line - optimisation.\n"); */
lcd_hline(x1, x2, y1);
return;
}
deltax = abs(x2 - x1);
if (deltax == 0)
{
DEBUGF("lcd_drawline() called for vertical line - optimisation.\n");
/* DEBUGF("lcd_drawline() called for vertical line - optimisation.\n"); */
lcd_vline(x1, y1, y2);
return;
}