summaryrefslogtreecommitdiff
path: root/apps/plugins/brickmania.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r--apps/plugins/brickmania.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 527d0aace0..10f230ea66 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -958,7 +958,7 @@ int help(int when)
958 return 1; 958 return 1;
959 break; 959 break;
960 } 960 }
961 return NULL; 961 return 0;
962 break; 962 break;
963 case LEFT: 963 case LEFT:
964 case LEFT | BUTTON_REPEAT: 964 case LEFT | BUTTON_REPEAT:
@@ -987,7 +987,7 @@ int help(int when)
987 break; 987 break;
988 } 988 }
989 } 989 }
990 return NULL; 990 return 0;
991} 991}
992 992
993int pad_check(int ballxc, int mode, int pon ,int ballnum) 993int pad_check(int ballxc, int mode, int pon ,int ballnum)
@@ -1014,7 +1014,7 @@ int fire_space(void)
1014 if (fire[t].top+7 < 0) 1014 if (fire[t].top+7 < 0)
1015 return t; 1015 return t;
1016 1016
1017 return NULL; 1017 return 0;
1018} 1018}
1019 1019
1020int game_loop(void){ 1020int game_loop(void){
@@ -1388,7 +1388,7 @@ int game_loop(void){
1388 1388
1389 ball[k].y = -4; 1389 ball[k].y = -4;
1390 if (ball[k].pos_x != 0 && ball[k].pos_x+BALL!=LCD_WIDTH) 1390 if (ball[k].pos_x != 0 && ball[k].pos_x+BALL!=LCD_WIDTH)
1391 ball[k].x = pad_check(2,1,NULL,k); 1391 ball[k].x = pad_check(2,1,0,k);
1392 1392
1393 } else { 1393 } else {
1394 ball[k].y = -4; 1394 ball[k].y = -4;