mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
fix(gx): fix incorrect cast in CGxString::InitializeViewTranslation
This commit is contained in:
parent
44e4ca5f77
commit
3643263ce9
@ -580,7 +580,7 @@ void CGxString::InitializeViewTranslation() {
|
||||
this->m_viewTranslation.x += (this->m_blockWidth * 0.5f);
|
||||
}
|
||||
|
||||
float v13 = CMath::fuint_pi(this->m_spacing * static_cast<float>(GetScreenPixelHeight())) / GetScreenPixelHeight();
|
||||
float v13 = CMath::fuint_pi(this->m_spacing * static_cast<float>(GetScreenPixelHeight())) / static_cast<float>(GetScreenPixelHeight());
|
||||
float v24 = v13 * (float)(this->m_intB0 - 1) + (float)this->m_intB0 * this->m_currentFontHeight;
|
||||
|
||||
if (this->m_intD4 >= 4) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user