- fix typos

This commit is contained in:
Magnus Norddahl 2019-03-04 01:23:13 +01:00
commit 99c3d72aa0
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ void VkRenderState::SetStencil(int offs, int op, int flags)
{
bool cmon = !(flags & SF_ColorMaskOff);
SetColorMask(cmon, cmon, cmon, cmon); // don't write to the graphics buffer
mDepthWrite = cmon;
mDepthWrite = !(flags & SF_DepthMaskOff);
}
mNeedApply = true;