From 7740eb37fe1343df20efa00f5646792c24f614a1 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sun, 2 Jan 2022 21:14:21 +0000 Subject: Added timer to auto complete routine. --- klondike.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/klondike.c b/klondike.c index c415517..1aa1d4e 100644 --- a/klondike.c +++ b/klondike.c @@ -22,7 +22,9 @@ Klondike */ +#include #include +#include #include "deck.h" #include "pile.h" @@ -259,6 +261,10 @@ 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], @@ -267,6 +273,8 @@ 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 && -- cgit v1.2.3