Okay, so I have my program which works on my laptop, my old desktop, and the computers at school. However I am having a problem in that it will not run on my new computer. The program compiles, but nothing happens when I run it... Only a terminal window pops up. It does not even run the main() loop (or, rather, it does not print what I tell it to at the beginning of the main loop). I ran it on my laptop, and that works perfectly. Is it possible for my computer to not be compatible with SFML? My computer seems to run fine otherwise...
Does anyone know what might be going wrong?
Code:
int main()
{
cout<<"Meow"<<endl;
GameLoad();
cout<<"Loaded"<<endl;
while (Window.IsOpen())
{
Animate();
Window.Clear();
Display();
Window.Display();
}
}

.exeover to your other computer? If so, did you copy the Release build? Does your computer have the right runtime libraries? Are the SFML DLLs in the same folder as your program? (I'm assuming Windows here...) – Cornstalks Jan 22 at 3:31