engine: common: system: fix inverted COM_CheckStringEmpty in Sys_GetCurrentUser for Vita
Thanks @fgsfdsfgs for pointing out
This commit is contained in:
parent
d085c5a843
commit
33c0764e65
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue