Actually Fix card transparency issues

master
En Yi 2019-06-04 19:05:32 +01:00
parent fcb2fa5ded
commit 1e71e4aff9
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ class Deck():
self.update_deck_display()
def update_deck_display(self):
self.background.fill((0, 255, 0))
self.deck_surface.fill((0, 255, 0))
self.deck_surface.blit(self.background, (0, 0))
if not self.is_empty():
if self.draw_from_last:

View File

@ -5,7 +5,7 @@ import random
import pickle
import sys
AUTOPLAY = False
AUTOPLAY = True
class GameScreen(view.PygView):