mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 02:26:39 +00:00
Fix inverted low/high mask value on GetThreadCoreMask32 syscall (#2325)
This commit is contained in:
parent
9d7627af64
commit
f6fcef483f
1 changed files with 2 additions and 2 deletions
|
@ -333,8 +333,8 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|||
{
|
||||
KernelResult result = _syscall.GetThreadCoreMask(handle, out preferredCore, out long affinityMask);
|
||||
|
||||
affinityMaskLow = (int)(affinityMask >> 32);
|
||||
affinityMaskHigh = (int)(affinityMask & uint.MaxValue);
|
||||
affinityMaskLow = (int)(affinityMask & uint.MaxValue);
|
||||
affinityMaskHigh = (int)(affinityMask >> 32);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue