diff options
-rw-r--r-- | klondike.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -261,10 +261,6 @@ int Klondike(int draw, int thoughtful) if (autofill) { - struct timespec spec = {0}; - - spec.tv_nsec = 250000000; - for(f = 0; f < 7; f++) { if (PutCardOnSuitPile(&column_up[f], @@ -273,8 +269,6 @@ int Klondike(int draw, int thoughtful) RevealCard(&column_down[pos_x], &column_up[pos_x]); } } - - nanosleep(&spec, NULL); } if (hearts.no == 13 && diamonds.no == 13 && @@ -284,6 +278,13 @@ int Klondike(int draw, int thoughtful) } refresh(); + + if (autofill) + { + struct timespec spec = {0}; + spec.tv_nsec = 250000000; + nanosleep(&spec, NULL); + } if (!won && !autofill) { |