使用cx_Freeze编译的Python&和一个奇怪的错误Pygame Document作为.exe文件

时间:2016-10-23 01:34:48

标签: python python-2.7 pygame cx-freeze

我正在用Python 2.7和Pygame 1.9创建一个视频游戏。我用cx_Freeze 4.3.4编译了它。当我运行.exe文件时,我收到此错误:

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.

我环顾网站和这个网站,但没有发现任何可以帮助我的东西。我正在使用默认的pygame字体。所以字体不可能。

如果这有帮助,我以32位格式制作。您可以在下面找到源代码。

可以找到Python源代码here

可以找到所有资产here

感谢你的时间,OrionDark7。

1 个答案:

答案 0 :(得分:1)

我只是想通了,确实,这是字体。而不是:

pygame.font.Font(None, 1)

应该是:

pygame.font.Font("Font Filepath and Filename here", 1)

抱歉,如果我浪费你的时间。只是想弄明白。