diff --git a/Ryujinx.HLE/HOS/Kernel/KAddressArbiter.cs b/Ryujinx.HLE/HOS/Kernel/KAddressArbiter.cs index 485a9905e..b43524855 100644 --- a/Ryujinx.HLE/HOS/Kernel/KAddressArbiter.cs +++ b/Ryujinx.HLE/HOS/Kernel/KAddressArbiter.cs @@ -37,7 +37,7 @@ namespace Ryujinx.HLE.HOS.Kernel { _system.CriticalSection.Leave(); - return MakeError(ErrorModule.Kernel, KernelErr.NoAccessPerm);; + return MakeError(ErrorModule.Kernel, KernelErr.NoAccessPerm); } if (mutexValue != (ownerHandle | HasListenersMask)) diff --git a/Ryujinx.HLE/HOS/Services/Nfp/IUser.cs b/Ryujinx.HLE/HOS/Services/Nfp/IUser.cs index 3ce0b35c1..1a3f7df74 100644 --- a/Ryujinx.HLE/HOS/Services/Nfp/IUser.cs +++ b/Ryujinx.HLE/HOS/Services/Nfp/IUser.cs @@ -61,7 +61,7 @@ namespace Ryujinx.HLE.HOS.Services.Nfp throw new InvalidOperationException("Out of handles!"); } - context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);; + context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle); return 0; } diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelIoctl.cs b/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelIoctl.cs index 95b3e2576..fdc731713 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelIoctl.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelIoctl.cs @@ -89,7 +89,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel NvHostChannelSubmitGpfifo args = MemoryHelper.Read(context.Memory, inputPosition); - NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm;; + NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm; for (int index = 0; index < args.NumEntries; index++) { @@ -163,7 +163,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel NvHostChannelSubmitGpfifo args = MemoryHelper.Read(context.Memory, inputPosition); - NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm;; + NvGpuVmm vmm = NvGpuASIoctl.GetASCtx(context).Vmm; for (int index = 0; index < args.NumEntries; index++) { diff --git a/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs b/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs index 306c4b9c3..af72a6673 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs @@ -292,7 +292,7 @@ namespace Ryujinx.HLE.HOS.Services.Android int nvMapHandle = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x4c); 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;