Forgotten in r22876 : remove (void)arg;
These arguments are now used git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22877 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c46b44f20b
commit
f690cfdb44
1 changed files with 0 additions and 15 deletions
|
@ -178,13 +178,6 @@ void lcd_init_device(void)
|
|||
void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
|
||||
int bheight, int stride)
|
||||
{
|
||||
(void)data;
|
||||
(void)x;
|
||||
(void)by;
|
||||
(void)width;
|
||||
(void)bheight;
|
||||
(void)stride;
|
||||
|
||||
const unsigned char *src, *src_end;
|
||||
unsigned char *dst_u, *dst_l;
|
||||
static unsigned char upper[LCD_WIDTH] IBSS_ATTR;
|
||||
|
@ -230,14 +223,6 @@ void lcd_grey_data(unsigned char *values, unsigned char *phases, int count);
|
|||
void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
|
||||
int x, int by, int width, int bheight, int stride)
|
||||
{
|
||||
(void)values;
|
||||
(void)phases;
|
||||
(void)x;
|
||||
(void)by;
|
||||
(void)width;
|
||||
(void)bheight;
|
||||
(void)stride;
|
||||
|
||||
stride <<= 2; /* 4 pixels per block */
|
||||
while (bheight--)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue