fixed AtomLyIntegration

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-25 16:21:12 -07:00
committed by Esteban Papp
parent 38fd7f0013
commit b3e895d10c
9 changed files with 19 additions and 18 deletions
@@ -118,7 +118,7 @@ int AZ::GlyphBitmap::Blur(AZ::FontSmoothAmount smoothAmount)
colorSum += m_buffer[yOffset + x];
}
m_buffer[yOffset + x] = colorSum >> 2;
m_buffer[yOffset + x] = static_cast<uint8_t>(colorSum >> 2);
}
}
}