removed old flydots anim
This commit is contained in:
parent
b3b55fea9d
commit
16df0e4889
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue