1
i tried adding -static-libgcc...it stills says the .dll is missing.
EDIT: I installed the newest MinGW and now it's fixed. Thanks for the help
EDIT: I installed the newest MinGW and now it's fixed. Thanks for the help
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
#include <SFML/System.hpp>
#include <iostream>
int main()
{
sf::Clock Clock;
while (Clock.GetElapsedTime() < 5.f)
{
std::cout << Clock.GetElapsedTime() << std::endl;
sf::Sleep(0.5f);
}
return 0;
}