mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 14:21:43 +00:00
SNK 40th Anniversary Out of Bounds Fix (#557)
* Check vertex array is enabled before reading constant attribute to avoid out of bounds exception * Removed new line
This commit is contained in:
parent
0cd5ba03fe
commit
3731d0ce84
1 changed files with 8 additions and 2 deletions
|
@ -784,12 +784,18 @@ namespace Ryujinx.Graphics.Graphics3d
|
|||
|
||||
bool IsRgba = ((Packed >> 31) & 1) != 0;
|
||||
|
||||
// Check vertex array is enabled to avoid out of bounds exception when reading bytes
|
||||
bool Enable = (ReadRegister(NvGpuEngine3dReg.VertexArrayNControl + ArrayIndex * 4) & 0x1000) != 0;
|
||||
|
||||
//Note: 16 is the maximum size of an attribute,
|
||||
//having a component size of 32-bits with 4 elements (a vec4).
|
||||
if (Enable)
|
||||
{
|
||||
byte[] Data = Vmm.ReadBytes(VbPosition + Offset, 16);
|
||||
|
||||
Attribs[ArrayIndex].Add(new GalVertexAttrib(Attr, IsConst, Offset, Data, Size, Type, IsRgba));
|
||||
}
|
||||
}
|
||||
|
||||
State.VertexBindings = new GalVertexBinding[32];
|
||||
|
||||
|
|
Loading…
Reference in a new issue