mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-02 13:02:24 -05:00
misc: chore: Fix object creation in Gpu project
This commit is contained in:
@@ -73,7 +73,7 @@ namespace Ryujinx.Graphics.Gpu.Memory
|
||||
|
||||
if (binding >= 0)
|
||||
{
|
||||
BufferRange range = new BufferRange(_handle, 0, data.Length);
|
||||
BufferRange range = new(_handle, 0, data.Length);
|
||||
_renderer.Pipeline.SetUniformBuffers(stackalloc[] { new BufferAssignment(0, range) });
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user