From 6e802c682fbd9a130891dca7c4410de00f8fd6a3 Mon Sep 17 00:00:00 2001 From: Murilo Soares Pereira Date: Sun, 11 Apr 2010 17:18:38 -0300 Subject: [PATCH] Removed references to debug. --- lib/display.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/display.c b/lib/display.c index 15d429e..e90ef31 100644 --- a/lib/display.c +++ b/lib/display.c @@ -5,7 +5,6 @@ #include #include "deck.h" #include "display.h" -#include "../debug/deck_debug.h" void init_curses() { setlocale(LC_ALL, ""); /* supporting unicode characters */ @@ -61,8 +60,6 @@ void initialize_game() { shuffle_deck(deck); deal_cards(deck); draw_game(deck); - endwin(); - /*print_deck(deck);*/ return; }