
14.11.2018, 18:15
|
|
Участник форума
Регистрация: 19.01.2017
Сообщений: 130
С нами:
4901705
Репутация:
98
|
|
whats wrong with this it should show text depending on time pass but it shows nothing....
static DWORD dwShowTick;
dwShowTick = GetTickCount ();
if (GetTickCount () - dwShowTick == 10000)
{
addMessage("10 sec");
}
else if (GetTickCount () - dwShowTick == 20000) // i also puted > 20000 but still not working
{
addMessage("20 sec");
}
|
|
|