Whitespace fix

This commit is contained in:
sunshineinabox 2024-07-31 18:22:29 -07:00
parent 3f7a3ac558
commit 38c9ec925c
1 changed files with 1 additions and 1 deletions

View File

@ -1064,7 +1064,7 @@ namespace Ryujinx.Graphics.Vulkan
public void SetPrimitiveTopology(PrimitiveTopology topology)
{
topology = _newState.HasTessellationControlShader ? PrimitiveTopology.Patches : topology;
_topology = topology;
var vkTopology = Gd.TopologyRemap(topology).Convert();