cIsThread cleanup

+ Semi-gracefully handle unexpected exceptions
* No-one cared about the return values, remove them
This commit is contained in:
Tiger Wang
2021-03-29 23:36:15 +01:00
parent 8ec5552998
commit 222d9957a1
6 changed files with 111 additions and 114 deletions
+2 -1
View File
@@ -411,7 +411,8 @@ bool cServer::Start(void)
LOGERROR("Couldn't open any ports. Aborting the server");
return false;
}
return m_TickThread.Start();
m_TickThread.Start();
return true;
}