Cards are supposed to be covered when starting a new cycle.

This commit is contained in:
Murilo Pereira 2011-06-08 22:19:47 -03:00
parent 9a866dd011
commit 27f53f57ce

View File

@ -182,6 +182,7 @@ void keyboard_event(int key) {
if (game.passes_through_deck_left >= 1) { if (game.passes_through_deck_left >= 1) {
while (!stack_empty(deck->waste_pile)) { while (!stack_empty(deck->waste_pile)) {
move_card(&(deck->waste_pile), &(deck->stock)); move_card(&(deck->waste_pile), &(deck->stock));
card_cover(deck->stock->card);
} }
draw_stack(deck->stock); draw_stack(deck->stock);
draw_stack(deck->waste_pile); draw_stack(deck->waste_pile);