Why cast when you don't need to cast

This commit is contained in:
sunshineinabox 2024-07-31 18:56:06 -07:00
parent 1bcc9c029a
commit adc7528b54
1 changed files with 2 additions and 2 deletions

View File

@ -575,7 +575,7 @@ namespace Ryujinx.Graphics.Vulkan
dynamicStates[5] = DynamicState.BlendConstants;
dynamicStates[6] = DynamicState.DepthBias;
int currentIndex = 7;
uint currentIndex = 7;
if (!isMoltenVk)
{
@ -622,7 +622,7 @@ namespace Ryujinx.Graphics.Vulkan
var pipelineDynamicStateCreateInfo = new PipelineDynamicStateCreateInfo
{
SType = StructureType.PipelineDynamicStateCreateInfo,
DynamicStateCount = (uint)currentIndex,
DynamicStateCount = currentIndex,
PDynamicStates = dynamicStates,
};