Browse Source

removed old flydots anim

feature/2015
Hans-Gert Dahmen 15 years ago
parent
commit
16df0e4889
  1. 22
      animations/programm.c
  2. 3
      animations/programm.h

22
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

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

Loading…
Cancel
Save