removed old flydots anim

This commit is contained in:
Hans-Gert Dahmen 2009-12-27 02:20:02 +00:00
parent b3b55fea9d
commit 16df0e4889
2 changed files with 0 additions and 25 deletions

View File

@ -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

View File

@ -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();