diff options
-rw-r--r-- | apps/bitmaps/native/SOURCES | 2 | ||||
-rw-r--r-- | apps/bitmaps/native/rockboxlogo.160x50x16.bmp | bin | 0 -> 24054 bytes | |||
-rw-r--r-- | apps/recorder/icons.h | 5 | ||||
-rwxr-xr-x | tools/configure | 2 |
4 files changed, 9 insertions, 0 deletions
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES index f15624bb34..b4ac2e8cb2 100644 --- a/apps/bitmaps/native/SOURCES +++ b/apps/bitmaps/native/SOURCES @@ -5,6 +5,8 @@ rockboxlogo.112x37x1.bmp #elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2) rockboxlogo.160x53x2.bmp +#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 16) +rockboxlogo.160x50x16.bmp #elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) rockboxlogo.176x54x16.bmp #elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16) diff --git a/apps/bitmaps/native/rockboxlogo.160x50x16.bmp b/apps/bitmaps/native/rockboxlogo.160x50x16.bmp Binary files differnew file mode 100644 index 0000000000..59e472def1 --- /dev/null +++ b/apps/bitmaps/native/rockboxlogo.160x50x16.bmp diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 1ff6a670f8..258d93b444 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -90,6 +90,11 @@ extern const fb_data rockboxlogo[]; #define ROCKBOXLOGO_WIDTH 160 #define ROCKBOXLOGO_HEIGHT 53 +#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 16) +/* iAudio X5 */ +#define ROCKBOXLOGO_WIDTH 160 +#define ROCKBOXLOGO_HEIGHT 50 + #elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) /* iPod Nano */ #define ROCKBOXLOGO_WIDTH 176 diff --git a/tools/configure b/tools/configure index e7a7c8d27f..9d51e4077f 100755 --- a/tools/configure +++ b/tools/configure @@ -680,6 +680,8 @@ appsdir='\$(ROOTDIR)/apps' tool="$rootdir/tools/scramble -add=x5" # wrong, must be fixed bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + bmp2rb_remotemono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_remotenative="$rootdir/tools/bmp2rb -f 0" output="rockbox.iaudio" appextra="recorder:gui" archosrom="" |