From c2de84abf55b017ee1a6c7c6804df18320cbc5f2 Mon Sep 17 00:00:00 2001 From: s1lent Date: Tue, 14 Feb 2017 17:15:23 +0700 Subject: [PATCH] HLDS Launcher: Fix pingboost 1 --- rehlds/dedicated/src/sys_linux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rehlds/dedicated/src/sys_linux.cpp b/rehlds/dedicated/src/sys_linux.cpp index 2f1515c..00bef76 100644 --- a/rehlds/dedicated/src/sys_linux.cpp +++ b/rehlds/dedicated/src/sys_linux.cpp @@ -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(); }