1
0
Fork 0
forked from len0rd/rockbox

fix the bitmaps position bug on X5

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9229 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Ben Basha 2006-03-24 13:59:54 +00:00
parent da5fb18bca
commit 12f3fec388
10 changed files with 11 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Before After
Before After

View file

@ -232,6 +232,16 @@ extern const fb_data brickmania_bricks[];
#endif #endif
#define BMPWIDTH_menu 160 #define BMPWIDTH_menu 160
#if LCD_DEPTH == 16
#define BMPXOFS_start 38
#define BMPYOFS_start 56
#define BMPXOFS_resume 42
#define BMPYOFS_resume 72
#define BMPXOFS_help 65
#define BMPYOFS_help 85
#define BMPXOFS_quit 66
#define BMPYOFS_quit 99
#else
#define BMPXOFS_start 34 #define BMPXOFS_start 34
#define BMPYOFS_start 64 #define BMPYOFS_start 64
#define BMPXOFS_resume 38 #define BMPXOFS_resume 38
@ -240,6 +250,7 @@ extern const fb_data brickmania_bricks[];
#define BMPYOFS_help 90 #define BMPYOFS_help 90
#define BMPXOFS_quit 64 #define BMPXOFS_quit 64
#define BMPYOFS_quit 103 #define BMPYOFS_quit 103
#endif
#define HIGHSCORE_XPOS 7 #define HIGHSCORE_XPOS 7
#define HIGHSCORE_YPOS 36 #define HIGHSCORE_YPOS 36