mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 19:56:38 +00:00
NvGpuEngine3d: Fix uploading vertex arrays without index buffers. (#173)
This commit is contained in:
parent
46f18af6be
commit
35e695552e
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ namespace Ryujinx.HLE.Gpu
|
|||
throw new InvalidOperationException();
|
||||
}
|
||||
|
||||
if (IndexSize != 0)
|
||||
if (IndexCount != 0)
|
||||
{
|
||||
int IbSize = IndexCount * IndexSize;
|
||||
|
||||
|
|
Loading…
Reference in a new issue