From 7585acaeefe99b893c8e15c4694d6c89be808dd0 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Thu, 21 Aug 2014 20:20:12 -0400 Subject: [PATCH] << >> --- core/PlayerManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/PlayerManager.cpp b/core/PlayerManager.cpp index d543e3c4..ffcfdd9c 100644 --- a/core/PlayerManager.cpp +++ b/core/PlayerManager.cpp @@ -2471,7 +2471,7 @@ const char *CSteamID::Render() const { case k_EAccountTypeInvalid: case k_EAccountTypeIndividual: - snprintf(szSteamID, sizeof(szSteamID), "STEAM_%u:%u:%u", kCurrentSteamUniverse, GetAccountID() % 2, GetAccountID() << 1); + snprintf(szSteamID, sizeof(szSteamID), "STEAM_%u:%u:%u", kCurrentSteamUniverse, GetAccountID() % 2, GetAccountID() >> 1); break; default: szSteamID[0] = '\0';