2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-01 01:25:38 +03:00

HLDS Launcher: Fix pingboost 1

This commit is contained in:
s1lent 2017-02-14 17:15:23 +07:00
parent 562f957477
commit c2de84abf5

View File

@ -94,7 +94,7 @@ void Sleep_Timer(int msec)
g_bPaused = false;
// set the timer to trigger
if (setitimer(ITIMER_REAL, &tm, NULL)) {
if (!setitimer(ITIMER_REAL, &tm, NULL)) {
// wait for the signal
pause();
}