mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-05-13 06:34:54 -05:00
Fix persistantId check in IsPasswordCacheEnabled
This commit is contained in:
parent
2639885b2b
commit
125df7bbfd
|
|
@ -275,7 +275,7 @@ void nnActExport_IsPasswordCacheEnabledEx(PPCInterpreter_t* hCPU)
|
|||
cemuLog_logDebug(LogType::Force, "nn_act.IsPasswordCacheEnabledEx({})", slot);
|
||||
|
||||
const uint32 persistentId = nn::act::GetPersistentIdEx(slot);
|
||||
if (persistentId != 1)
|
||||
if (persistentId == 0)
|
||||
{
|
||||
osLib_returnFromFunction(hCPU, 0);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user