The 'width' and 'height' fields don't exist anymore.

This commit is contained in:
Murilo Soares Pereira 2010-04-10 14:40:37 -03:00
parent 121e49e2b7
commit 459dc12549

View File

@ -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;
}