This commit is contained in:
GabsPuNs
2026-03-29 20:13:53 -04:00
parent 58461bfa3f
commit 11e91d2dd1
3 changed files with 7 additions and 7 deletions

View File

@@ -718,7 +718,7 @@ int Texture::crispBlend(int c0, int c1)
int a1 = static_cast<int>(((c1 & 0xff000000) >> 24)) & 0xff;
// continue with crisp blend if it's likely to be an opaque/cutout tile in the atlas
if (a0 >= 0xfa || a1 >= 0xfa || !Minecraft::GetInstance()->options->MipmapsBlend)
if (a0 >= 0xfa || a1 >= 0xfa || !Minecraft::GetInstance()->options->mipmapsBlend)
{
int a = 255;