Browse Source

Removed unused variables as of gcc noitification

feature/2015
suschman 15 years ago
parent
commit
27260b2abe
  1. 2
      animations/programm.c
  2. 3
      games/tetris/view.c

2
animations/programm.c

@ -226,7 +226,7 @@ void rectangles(){
// schräge linien die aufblitzen
void lines1(){
unsigned char value,n,x,y,h,w,i,j;
unsigned char value,n,x,y,h,w;
unsigned int delay=500;
clear_screen(0);

3
games/tetris/view.c

@ -207,9 +207,6 @@ void tetris_view_drawBorders(uint8_t nColor)
setpixel((pixel){4, y}, nColor);
setpixel((pixel){15, y}, nColor);
}
uint8_t nPen;
for (y = 0; y < 5; ++y)
{
for (x = 0; x <= 3; ++x){

Loading…
Cancel
Save