diff options
-rw-r--r-- | util.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -119,7 +119,7 @@ void WinScreen() typedef struct { - double x,y,yi; + int x,y,yi; } Star; Star *star; @@ -140,7 +140,7 @@ void WinScreen() do { - star[f].yi = DRand() * 2; + star[f].yi = rand() % 3; } while(star[f].yi == 0); } @@ -163,7 +163,7 @@ void WinScreen() do { - star[f].yi = DRand() * 2; + star[f].yi = rand() % 3; } while(star[f].yi == 0); } } |