Remove unneeded semicolons
This commit is contained in:
parent
267f82bd82
commit
d16adaf965
4 changed files with 5 additions and 5 deletions
|
@ -37,7 +37,7 @@ namespace Ryujinx.HLE.HOS.Kernel
|
||||||
{
|
{
|
||||||
_system.CriticalSection.Leave();
|
_system.CriticalSection.Leave();
|
||||||
|
|
||||||
return MakeError(ErrorModule.Kernel, KernelErr.NoAccessPerm);;
|
return MakeError(ErrorModule.Kernel, KernelErr.NoAccessPerm);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mutexValue != (ownerHandle | HasListenersMask))
|
if (mutexValue != (ownerHandle | HasListenersMask))
|
||||||
|
|
|
@ -61,7 +61,7 @@ namespace Ryujinx.HLE.HOS.Services.Nfp
|
||||||
throw new InvalidOperationException("Out of handles!");
|
throw new InvalidOperationException("Out of handles!");
|
||||||
}
|
}
|
||||||
|
|
||||||
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);;
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,7 +89,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
|
||||||
|
|
||||||
NvHostChannelSubmitGpfifo args = MemoryHelper.Read<NvHostChannelSubmitGpfifo>(context.Memory, inputPosition);
|
NvHostChannelSubmitGpfifo args = MemoryHelper.Read<NvHostChannelSubmitGpfifo>(context.Memory, inputPosition);
|
||||||
|
|
||||||
NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm;;
|
NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm;
|
||||||
|
|
||||||
for (int index = 0; index < args.NumEntries; index++)
|
for (int index = 0; index < args.NumEntries; index++)
|
||||||
{
|
{
|
||||||
|
@ -163,7 +163,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
|
||||||
|
|
||||||
NvHostChannelSubmitGpfifo args = MemoryHelper.Read<NvHostChannelSubmitGpfifo>(context.Memory, inputPosition);
|
NvHostChannelSubmitGpfifo args = MemoryHelper.Read<NvHostChannelSubmitGpfifo>(context.Memory, inputPosition);
|
||||||
|
|
||||||
NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm;;
|
NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm;
|
||||||
|
|
||||||
for (int index = 0; index < args.NumEntries; index++)
|
for (int index = 0; index < args.NumEntries; index++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -292,7 +292,7 @@ namespace Ryujinx.HLE.HOS.Services.Android
|
||||||
int nvMapHandle = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x4c);
|
int nvMapHandle = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x4c);
|
||||||
int bufferOffset = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x50);
|
int bufferOffset = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x50);
|
||||||
|
|
||||||
NvMapHandle map = NvMapIoctl.GetNvMap(context, nvMapHandle);;
|
NvMapHandle map = NvMapIoctl.GetNvMap(context, nvMapHandle);
|
||||||
|
|
||||||
long fbAddr = map.Address + bufferOffset;
|
long fbAddr = map.Address + bufferOffset;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue