mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
Fix regression caused by wrong SB descriptor offset (#1316)
This commit is contained in:
parent
a78a69a6e7
commit
96951b7d04
|
@ -86,7 +86,7 @@ namespace Ryujinx.Graphics.Gpu.Engine
|
|||
|
||||
ulong cbDescAddress = BufferManager.GetComputeUniformBufferAddress(0);
|
||||
|
||||
int cbDescOffset = 0x260 + cb.Slot * 0x10;
|
||||
int cbDescOffset = 0x260 + (cb.Slot - 8) * 0x10;
|
||||
|
||||
cbDescAddress += (ulong)cbDescOffset;
|
||||
|
||||
|
|
Loading…
Reference in a new issue