engine: common: system: fix inverted COM_CheckStringEmpty in Sys_GetCurrentUser for Vita

Thanks @fgsfdsfgs for pointing out
This commit is contained in:
Alibek Omarov 2023-03-17 17:29:40 +03:00 committed by GitHub
parent d085c5a843
commit 33c0764e65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ const char *Sys_GetCurrentUser( void )
#elif XASH_PSVITA
static string username;
sceAppUtilSystemParamGetString( SCE_SYSTEM_PARAM_ID_USERNAME, username, sizeof( username ) - 1 );
if( !COM_CheckStringEmpty( username ) )
if( COM_CheckStringEmpty( username ))
return username;
#elif XASH_POSIX && !XASH_ANDROID && !XASH_NSWITCH
uid_t uid = geteuid();