forked from len0rd/rockbox
The modifications are for all larger screens
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6723 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
92ea04a40a
commit
65e6a63026
1 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ Head and Tail are stored
|
||||||
#define WIDTH 28
|
#define WIDTH 28
|
||||||
#define HEIGHT 16
|
#define HEIGHT 16
|
||||||
|
|
||||||
#ifdef IRIVER_H100
|
#if LCD_WIDTH >= 160 && LCD_HEIGHT >= 128
|
||||||
#define MULTIPLIER 5 /*Modifier for porting on other screens*/
|
#define MULTIPLIER 5 /*Modifier for porting on other screens*/
|
||||||
#define MODIFIER_1 5
|
#define MODIFIER_1 5
|
||||||
#define MODIFIER_2 3
|
#define MODIFIER_2 3
|
||||||
|
@ -616,7 +616,7 @@ void draw_apple( void )
|
||||||
{
|
{
|
||||||
int x,y;
|
int x,y;
|
||||||
|
|
||||||
#ifdef IRIVER_H100
|
#if LCD_WIDTH >= 160 && LCD_HEIGHT >= 128
|
||||||
char pscore[5], counter[4];
|
char pscore[5], counter[4];
|
||||||
|
|
||||||
rb->lcd_bitmap(snakebmp,0,0,BMPWIDTH_snakebmp,BMPHEIGHT_snakebmp,false);
|
rb->lcd_bitmap(snakebmp,0,0,BMPWIDTH_snakebmp,BMPHEIGHT_snakebmp,false);
|
||||||
|
@ -1287,7 +1287,7 @@ void game_init(void)
|
||||||
rb->lcd_clear_display();
|
rb->lcd_clear_display();
|
||||||
redraw();
|
redraw();
|
||||||
|
|
||||||
#ifdef IRIVER_H100
|
#if LCD_WIDTH >= 160 && LCD_HEIGHT >= 128
|
||||||
|
|
||||||
rb->lcd_bitmap(snakebmp,0,0,BMPWIDTH_snakebmp,BMPWIDTH_snakebmp,false);
|
rb->lcd_bitmap(snakebmp,0,0,BMPWIDTH_snakebmp,BMPWIDTH_snakebmp,false);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue