diff options
author | Michael Sparmann <theseven@rockbox.org> | 2010-10-25 12:52:02 +0000 |
---|---|---|
committer | Michael Sparmann <theseven@rockbox.org> | 2010-10-25 12:52:02 +0000 |
commit | 77129ad3ec7e1999a5177c8a49af64be78882566 (patch) | |
tree | 004c963db9a93fa9a5f962a68eddc083a1fd1662 /firmware/usb.c | |
parent | 7c6bb3f4ace0e15e8ca964dc7ec9bf28632c85ce (diff) | |
download | rockbox-77129ad3ec7e1999a5177c8a49af64be78882566.tar.gz rockbox-77129ad3ec7e1999a5177c8a49af64be78882566.tar.bz2 rockbox-77129ad3ec7e1999a5177c8a49af64be78882566.zip |
Really fix yellow: Rename BMP_LINESIZE and BMP_BPP to get rid of the macro name collision
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28359 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/usb.c')
-rw-r--r-- | firmware/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usb.c b/firmware/usb.c index a76eb66fef..9eaf2014fa 100644 --- a/firmware/usb.c +++ b/firmware/usb.c @@ -71,7 +71,7 @@ static int usb_mmc_countdown = 0; /* Make sure there's enough stack space for screendump */ #ifdef USB_FULL_INIT -static long usb_stack[(DEFAULT_STACK_SIZE + SECTOR_SIZE + BMP_LINESIZE)/sizeof(long)]; +static long usb_stack[(DEFAULT_STACK_SIZE + SECTOR_SIZE + DUMP_BMP_LINESIZE)/sizeof(long)]; static const char usb_thread_name[] = "usb"; static unsigned int usb_thread_entry = 0; #ifndef USB_STATUS_BY_EVENT |