Hi,
there is somethin i don't understand at the Thread class.
When i write my own class and let it inerhit sf::Thread, i can start it that way
myThreadClass myThread;
myThread.Launch();
This works really well, but when I do that within a running thread, the function Run of myThreadClass isn't called.
It seams that the Object is destroyed, before the Run Method could be launched.
In functions of the Main thread does everything work well.
Any idears, how this could be?