mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 15:20:47 -07:00
Update syscall capabilites to include SVCs from FW 15.0.0 (#4530)
* Add CapabilityType enum * Add SupervisorCallCount * kernel: Add CapabilityExtensions & Change type of capabilities to uint * Remove private setter from Mask arrays * Pass ReadOnlySpan directly & Remove redundant type casts
This commit is contained in:
@ -19,7 +19,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
||||
|
||||
private int _activeSlotsCount;
|
||||
|
||||
private int _size;
|
||||
private uint _size;
|
||||
|
||||
private ushort _idCounter;
|
||||
|
||||
@ -28,9 +28,9 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
||||
_context = context;
|
||||
}
|
||||
|
||||
public Result Initialize(int size)
|
||||
public Result Initialize(uint size)
|
||||
{
|
||||
if ((uint)size > 1024)
|
||||
if (size > 1024)
|
||||
{
|
||||
return KernelResult.OutOfMemory;
|
||||
}
|
||||
|
Reference in New Issue
Block a user