From df449ab83c4283c86bddc5c39073c1613ef513b1 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 4 Jan 2022 18:33:47 +0000 Subject: Rejigged timer for auto fill. --- klondike.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/klondike.c b/klondike.c index 1aa1d4e..b899eb0 100644 --- a/klondike.c +++ b/klondike.c @@ -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) { -- cgit v1.2.3