From dbeb50684d24bf43c2bdbc087f6b1f52f385acf2 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 3 Jul 2020 19:41:27 -0300 Subject: Support inline index buffer data (#1351) * Support inline index buffer data * Sort usings --- Ryujinx.Graphics.Gpu/Engine/Inline2Memory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.Gpu/Engine/Inline2Memory.cs') diff --git a/Ryujinx.Graphics.Gpu/Engine/Inline2Memory.cs b/Ryujinx.Graphics.Gpu/Engine/Inline2Memory.cs index 79432395..f6a99440 100644 --- a/Ryujinx.Graphics.Gpu/Engine/Inline2Memory.cs +++ b/Ryujinx.Graphics.Gpu/Engine/Inline2Memory.cs @@ -74,7 +74,7 @@ namespace Ryujinx.Graphics.Gpu.Engine if (_isLinear && _params.LineCount == 1) { - ulong address = _context.MemoryManager.Translate( _params.DstAddress.Pack()); + ulong address = _context.MemoryManager.Translate(_params.DstAddress.Pack()); _context.PhysicalMemory.Write(address, data); } -- cgit v1.2.3