Skip to content

Commit

Permalink
- added missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Jun 22, 2022
1 parent a0259e8 commit e3d7afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/rendering/vulkan/system/vk_builders.cpp
Expand Up @@ -260,7 +260,7 @@ GraphicsPipelineBuilder& GraphicsPipelineBuilder::BlendMode(const FRenderStyle &
blendequation = VK_BLEND_OP_ADD;
}

BlendMode((VkBlendOp)blendequation, (VkBlendFactor)srcblend, (VkBlendFactor)dstblend);
return BlendMode((VkBlendOp)blendequation, (VkBlendFactor)srcblend, (VkBlendFactor)dstblend);
}

/////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit e3d7afa

Please sign in to comment.