1
0
forked from MeloNX/MeloNX

Fix regression caused by wrong SB descriptor offset (#1316)

This commit is contained in:
gdkchan 2020-06-22 08:48:32 -03:00 committed by GitHub
parent 9547242d7c
commit 86ad766cf1

View File

@ -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;