As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
#if PLATFORM == PLATFORM_WINDOWS void wait( float seconds ) { Sleep( (int) ( seconds * 1000.0f ) ); }#else #include <unistd.h> void wait( float seconds ) { usleep( (int) ( seconds * 1000000.0f ) ); }#endif