summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/steam_utils.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2025-01-06 15:40:45 +0300
committerGeorge Hazan <george.hazan@gmail.com>2025-01-06 15:40:45 +0300
commit26cac6b426f729c7df096cfb1614a3ee7d8eefc4 (patch)
tree4268f1b459a9c91e674d3f4aa652936ef3b49d67 /protocols/Steam/src/steam_utils.cpp
parent8ae640863b5ad766fffa77b32412924bc078419e (diff)
more code cleaning
Diffstat (limited to 'protocols/Steam/src/steam_utils.cpp')
-rw-r--r--protocols/Steam/src/steam_utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_utils.cpp b/protocols/Steam/src/steam_utils.cpp
index 04610d7cc9..2b8c3263db 100644
--- a/protocols/Steam/src/steam_utils.cpp
+++ b/protocols/Steam/src/steam_utils.cpp
@@ -88,7 +88,7 @@ void CSteamProto::SetId(const char *pszSetting, int64_t id)
/////////////////////////////////////////////////////////////////////////////////////////
// Statuses
-int SteamToMirandaStatus(PersonaState state)
+int SteamToMirandaStatus(uint32_t state)
{
switch (state) {
case PersonaState::Offline:
@@ -111,7 +111,7 @@ int SteamToMirandaStatus(PersonaState state)
}
}
-PersonaState MirandaToSteamState(int status)
+uint32_t MirandaToSteamState(int status)
{
switch (status) {
case ID_STATUS_OFFLINE: