Hi, i'm having trouble getting pysfml to work on windows 7.
I run this test code, it only wait two seconds and then
close the main window.
import time
from PySFML import sf
window = sf.RenderWindow(sf.VideoMode(320, 240), "Test")
texto = sf.String("Esperando 2 segundos ...")
window.Clear(sf.Color.Green)
window.Draw(texto)
window.Display()
time.sleep(2)
window.Close()
But, when main window close, i get an error saying:
PySFML works on Windows 7?
Thanks in advance for any help.