1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-20 19:54:19 +01:00

[d3d9] Fix a typo when unmarking autogen mips

This commit is contained in:
Joshua Ashton 2020-05-26 18:57:28 +01:00
parent 1a920f44ea
commit d8381dab8d

View File

@ -4929,7 +4929,7 @@ namespace dxvk {
auto texInfo = GetCommonTexture(m_state.textures[i]);
if (texInfo == pResource)
m_activeTexturesToGen &= 1 << i;
m_activeTexturesToGen &= ~(1 << i);
}
}