diff options
author | aunsane <aunsane@gmail.com> | 2017-12-29 16:03:42 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-12-29 16:04:05 +0300 |
commit | 939048b7ebce6a70c8e243fec36983de7d931e8b (patch) | |
tree | 8921c8e97595c9817537cf02feb151c947fa5f44 /protocols/Steam/src/steam_proto.h | |
parent | c4759940cdd3af9b314f71b3eec461b888cf62df (diff) |
Steam: fix high CPU usage
Diffstat (limited to 'protocols/Steam/src/steam_proto.h')
-rw-r--r-- | protocols/Steam/src/steam_proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h index b07f44649c..fee78f4b02 100644 --- a/protocols/Steam/src/steam_proto.h +++ b/protocols/Steam/src/steam_proto.h @@ -87,8 +87,8 @@ protected: time_t m_idleTS;
bool isTerminated, isConnected;
mir_cs requestQueueLock;
- HANDLE hRequestsQueueEvent;
- HANDLE hRequestQueueThread;
+ HANDLE m_hRequestsQueueEvent;
+ HANDLE m_hRequestQueueThread;
LIST<RequestQueueItem> requestQueue;
HANDLE m_pollingConnection, m_hPollingThread;
ULONG hAuthProcess;
|