I'm creating a video game with Python 2.7 and Pygame 1.9. I compiled it with cx_Freeze 4.3.4. When I run the .exe file, I get this error:
Fatal Python error: (pygame parachute) Segmentation Fault
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
I've looked around the web and around this site but haven't found anything that can really help me. I'm using the default pygame font. So fonts cant be it.
If this helps, I made it in 32 bit format. You can find the source code below.
The Python Source Code can be found here.
All of the Assets can be found here.
Thanks for your time, OrionDark7.
I just figured it out, indeed, it was the font. Instead of:
pygame.font.Font(None, 1)
It should be:
pygame.font.Font("Font Filepath and Filename here", 1)
Sorry if I wasted your time. Was just trying to figure it out.