From d6de0956f7e596a1aafc644f6b2763cc4dcc2aa9 Mon Sep 17 00:00:00 2001 From: Ian C Date: Fri, 15 May 2020 09:43:46 +0000 Subject: Small tweak to game won screen. --- util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util.c b/util.c index 4acb5d4..736ea47 100644 --- a/util.c +++ b/util.c @@ -119,7 +119,7 @@ void WinScreen() typedef struct { - int x,y,yi; + double x,y,yi; } Star; Star *star; @@ -140,7 +140,7 @@ void WinScreen() do { - star[f].yi = rand() % 3; + star[f].yi = (double)(rand() % 20) / 10.0; } while(star[f].yi == 0); } @@ -163,7 +163,7 @@ void WinScreen() do { - star[f].yi = rand() % 3; + star[f].yi = (double)(rand() % 20) / 10.0; } while(star[f].yi == 0); } } -- cgit v1.2.3