summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2015-03-06 16:46:55 +0000
committerRobert Pösel <robyer@seznam.cz>2015-03-06 16:46:55 +0000
commit7033ace59b8e45b1f39547143e5ad7652ea4b903 (patch)
treeb647d5648cd62b18f69e13200fb3fdb55e31a680
parentd5e5ed501874ef2a9738e3f94db1e62a3a69ba6f (diff)
Steam: Support "big picture" mode as client type
git-svn-id: http://svn.miranda-ng.org/main/trunk@12355 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/Steam/src/steam_contacts.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_contacts.cpp b/protocols/Steam/src/steam_contacts.cpp
index 0bd0ddd959..4d8af27c19 100644
--- a/protocols/Steam/src/steam_contacts.cpp
+++ b/protocols/Steam/src/steam_contacts.cpp
@@ -203,6 +203,10 @@ void CSteamProto::UpdateContact(MCONTACT hContact, JSONNODE *data)
// on mobile
setTString(hContact, "MirVer", _T("Steam (mobile)"));
break;
+ case 1024:
+ // big picture mode
+ setTString(hContact, "MirVer", _T("Steam (Big Picture)"));
+ break;
default:
// none/unknown (e.g. when contact is offline)
delSetting(hContact, "MirVer");