Fixed compiler warnings.

This commit is contained in:
hiker
2019-01-03 17:23:20 +11:00
parent c680181c9c
commit c37aebff94
2 changed files with 4 additions and 4 deletions

View File

@@ -144,8 +144,8 @@ void IconButtonWidget::add()
suggested_w = (int)(suggested_w*needed_scale_factor);
suggested_h = (int)(suggested_h*needed_scale_factor);
}
const int x_from = m_x + (float)(m_w - suggested_w)/2; // center horizontally
const int y_from = m_y + (float)(m_h - suggested_h)/2; // center vertically
const int x_from = m_x + (m_w - suggested_w)/2; // center horizontally
const int y_from = m_y + (m_h - suggested_h)/2; // center vertically
rect<s32> widget_size = rect<s32>(x_from,
y_from,

View File

@@ -141,8 +141,8 @@ void ServerSelection::init()
m_searcher->addListener(this);
m_icon_bank->setScale((float)getHeight() / 15.0f / 128.0f);
int row_height = UserConfigParams::m_hidpi_enabled ? getHeight() / 12.0f
: getHeight() / 15.0f;
int row_height = UserConfigParams::m_hidpi_enabled ? getHeight() / 12
: getHeight() / 15;
m_server_list_widget->setIcons(m_icon_bank, row_height);
m_sort_desc = false;