aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-02-17 21:34:32 -0500
committerNathan Vance <nathav63@gmail.com>2015-02-17 21:34:32 -0500
commiteee34bc408e688abef2cbcbc406736aea86d0531 (patch)
tree50430c91527acc1a480d3119a3624d51b3432802 /main.c
parentNow separates out cards for a deck and shuffles! (diff)
download7w-eee34bc408e688abef2cbcbc406736aea86d0531.tar.gz
7w-eee34bc408e688abef2cbcbc406736aea86d0531.tar.bz2
7w-eee34bc408e688abef2cbcbc406736aea86d0531.zip
added data to keep track of hands and what's been built
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/main.c b/main.c
index 1215890..303b52c 100644
--- a/main.c
+++ b/main.c
@@ -19,12 +19,6 @@ main()
io_init();
cards_init();
cardtour();
- io_printcard(0, 0, 0, 0);
- io_printcard(0, 6, 2, 14);
- io_printcard(0, 20, 2, 3);
- io_printcard(31, 0, 1, 12);
- io_printcard(31, 20, 2, 25);
- io_getkey();
halt();
}
bgstack15