Fixed crash: Font was initialized before pygame.init()

This commit is contained in:
The Wobbler 2023-11-05 19:06:57 +01:00
parent bf09b0bcc6
commit 825322d000

2
pg.py
View file

@ -3,6 +3,8 @@
import pygame import pygame
from tools import text from tools import text
pygame.init()
log = text.Log() log = text.Log()
buttonlist = False buttonlist = False