diff options
-rw-r--r-- | klondike.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -22,7 +22,9 @@ Klondike */ +#include <stdlib.h> #include <curses.h> +#include <time.h> #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 && |