Removing shift by 0 (#5249)
* Integral numbers should not be shifted by zero or more than their number of bits-1 * more
This commit is contained in:
@@ -137,7 +137,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
||||
|
||||
public void CancelHandleReservation(int handle)
|
||||
{
|
||||
int index = (handle >> 0) & 0x7fff;
|
||||
int index = handle & 0x7fff;
|
||||
|
||||
lock (_table)
|
||||
{
|
||||
|
Reference in New Issue
Block a user