fixed AtomLyIntegration
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user