mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Fix access control debug mask
This commit is contained in:
parent
b03e7aa7e9
commit
433e7bb98e
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ namespace LibHac.FsSrv.Impl
|
|||
|
||||
private static ulong GetAccessBitsMask(bool isDebugMode)
|
||||
{
|
||||
return isDebugMode ? 1 : 0x3FFFFFFFFFFFFFFFUL;
|
||||
return isDebugMode ? 0xFFFFFFFFFFFFFFFF : 0x3FFFFFFFFFFFFFFF;
|
||||
}
|
||||
|
||||
public bool HasContentOwnerId(ulong ownerId)
|
||||
|
|
Loading…
Reference in a new issue