From f04cdd7cc89d0e8adaa47cbb6c5acdacf6792113 Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:11:04 +0100 Subject: [PATCH] clang --- src/core/libraries/system/userservice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/libraries/system/userservice.cpp b/src/core/libraries/system/userservice.cpp index 87d6adf42..436d36bd5 100644 --- a/src/core/libraries/system/userservice.cpp +++ b/src/core/libraries/system/userservice.cpp @@ -600,7 +600,7 @@ s32 PS4_SYSV_ABI sceUserServiceGetLoginUserIdList(OrbisUserServiceLoginUserIdLis // TODO only first user, do the others as well int player_count = Config::GetNumberOfPlayers(); for (int i = 0; i < 4; i++) { - if(i < player_count) { + if (i < player_count) { userIdList->user_id[i] = i + 1; } else { userIdList->user_id[i] = ORBIS_USER_SERVICE_USER_ID_INVALID;