From 2ac2dbd650b01c24e5044cdc3157b76154857c30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Dunant?= Date: Tue, 28 Dec 2021 19:56:49 +0100 Subject: [PATCH] Update UserManager.cpp Style fix (CamelCase and space) --- dGame/UserManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dGame/UserManager.cpp b/dGame/UserManager.cpp index 9059b962..2e637575 100644 --- a/dGame/UserManager.cpp +++ b/dGame/UserManager.cpp @@ -566,10 +566,10 @@ void UserManager::LoginCharacter(const SystemAddress& sysAddr, uint32_t playerID } } -uint32_t getShirtColorId(uint32_t color) { +uint32_t GetShirtColorId(uint32_t color) { // get the index of the color in shirtColorVector - auto colorId = std::find (shirtColorVector.begin(), shirtColorVector.end(), color); + auto colorId = std::find(shirtColorVector.begin(), shirtColorVector.end(), color); return color = std::distance(shirtColorVector.begin(), colorId); }