SlowModzHD
Veteran
- Messages
- 16
- Reaction score
- 5
- Points
- 783
Yo all, someone knows how to use a sleep without freezing all the menu (all process in the thread) ?
Thanks alot if someone can help me..
Thanks alot if someone can help me..
What do you mean lol? This question isn't worded very well.Yo all, someone knows how to use a sleep without freezing all the menu (all process in the thread) ?
Thanks alot if someone can help me..
yh sorry I speak a little english.., you know how to use a sleep for sleep just one function and not all the menu ?What do you mean lol? This question isn't worded very well.
With the reverso translate: Know how to use how a sleep without sleeper all the options of the menu ?write it in a different language like the one you know and then ill google translate it
lol we want know u speak about SPRX or GSC that its and i know u talk about SPRX ;dWith the reverso translate: Know how to use how a sleep without sleeper all the options of the menu ?
And with the google translate : Do you know how to use a sleeper without sleep all the menu options
oh yeah about a SPRX, sorry I forgot that, I am so stupid :/lol we want know u speak about SPRX or GSC that its and i know u talk about SPRX ;d
Think this is what you want:oh yeah about a SPRX, sorry I forgot that, I am so stupid :/
#include <time.h>//You need this!
void wait(int seconds)//wait(2);//Credit to KYZA
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}