NvGpuEngine3d: Fix uploading vertex arrays without index buffers. (#173)

pull/174/head
Jules Blok 2018-06-18 15:59:03 +02:00 committed by gdkchan
parent 46f18af6be
commit 35e695552e
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ namespace Ryujinx.HLE.Gpu
throw new InvalidOperationException();
}
if (IndexSize != 0)
if (IndexCount != 0)
{
int IbSize = IndexCount * IndexSize;