From 16df0e488903cce452d9e8dfa620cc39123082f3 Mon Sep 17 00:00:00 2001 From: Hans-Gert Dahmen Date: Sun, 27 Dec 2009 02:20:02 +0000 Subject: [PATCH] removed old flydots anim --- animations/programm.c | 22 ---------------------- animations/programm.h | 3 --- 2 files changed, 25 deletions(-) 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();