diff --git a/animations/programm.c b/animations/programm.c index bbabac7..002ae38 100644 --- a/animations/programm.c +++ b/animations/programm.c @@ -271,28 +271,6 @@ void dots1(){ } - -// punkte, die von links nach rechts fliegen -void flydots(){ - unsigned char value,y; - unsigned int n,delay=100; - - clear_screen(0); - - for (n=0;n<200;n++){ - - y = RANDOM8()%NUM_ROWS; - value= RANDOM8()%(NUMPLANE+1); - - setpixel((pixel){NUM_COLS-1,y} , value); - shift_pixmap_l(); - wait(delay); - - - } - -} - #endif #ifdef ANIMATION_OFF diff --git a/animations/programm.h b/animations/programm.h index 3a1930d..576eb60 100644 --- a/animations/programm.h +++ b/animations/programm.h @@ -18,9 +18,6 @@ void test_palette2(); // randon dots appear and stay void dots1(); -// dots fly from left to right -void flydots(); - // rectangle-pattern void rectangle1();