From 459dc125491a751934182aa88a05b4d1e2beab09 Mon Sep 17 00:00:00 2001 From: Murilo Soares Pereira Date: Sat, 10 Apr 2010 14:40:37 -0300 Subject: [PATCH] The 'width' and 'height' fields don't exist anymore. --- debug/card_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/card_debug.c b/debug/card_debug.c index bccf750..3257ad2 100644 --- a/debug/card_debug.c +++ b/debug/card_debug.c @@ -36,7 +36,7 @@ void print_card(struct card *card) { } printf("at y:%d x:%d, ", card->frame->start_y, card->frame->start_x); - printf("with width:%d height:%d\n", card->frame->width, card->frame->height); + printf("with width:%d height:%d\n", FRAME_WIDTH, FRAME_HEIGHT); return; }