Answers for "pygame exe error"

0

pygame exe error

If your pygame app not working when you convert it to exe then
your problem is probably the font
font = pygame.font.Font(None, 32)
line 3 will not work. you have to specify which font you want
font = pygame.font.SysFont("comicsansms", 32)
line 5 will run no problem
Posted by: Guest on August-11-2020

Browse Popular Code Answers by Language