Error: Video System Not Initialized; Is There A Solution?
I have looked and looked. Every I find this question asked, the person is told to call pygame.init() When the asker says that they have done that, there are no more replies. I've t
Solution 1:
Can you run this boilerplate successfully ? Pygame, simple physics engine, how to hold points between planes?
Solution 2:
The very simple fix is to insure that the very last line of code in your program pygame.quit()
is not indented. Errors will make it seem to be earlier lines in your code....fooled me a for about 15 minutes.
Post a Comment for "Error: Video System Not Initialized; Is There A Solution?"