diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-18 19:31:53 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-18 19:31:53 +0000 |
commit | 9f2cbcd46d6887cb28bfb2ffb9f927355069f809 (patch) | |
tree | f26c72400ede076629137fcbea2ac198279ee529 /protocols | |
parent | 8c5881c1e5fa83cfb6512686cc0389f447745655 (diff) |
Steam: attempt to fix #1024
git-svn-id: http://svn.miranda-ng.org/main/trunk@15387 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Steam/src/steam_proto.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/protocols/Steam/src/steam_proto.cpp b/protocols/Steam/src/steam_proto.cpp index 5d5fc876f7..da4f58083e 100644 --- a/protocols/Steam/src/steam_proto.cpp +++ b/protocols/Steam/src/steam_proto.cpp @@ -1,9 +1,8 @@ #include "stdafx.h" -CSteamProto::CSteamProto(const char* protoName, const TCHAR* userName) : - PROTO<CSteamProto>(protoName, userName), - hAuthProcess(1), - hMessageProcess(1) +CSteamProto::CSteamProto(const char* protoName, const TCHAR* userName) + : PROTO<CSteamProto>(protoName, userName), + hAuthProcess(1), hMessageProcess(1) { CreateProtoService(PS_CREATEACCMGRUI, &CSteamProto::OnAccountManagerInit); |