Fix warning (ignored attributes)

This commit is contained in:
Nekotekina 2018-05-28 13:40:31 +03:00
parent bdf6545571
commit 55e9d437a9
2 changed files with 3 additions and 3 deletions

View file

@ -355,7 +355,7 @@ spu_imm_table_t::scale_table_t::scale_table_t()
{
for (s32 i = -155; i < 174; i++)
{
m_data[i + 155] = _mm_set1_ps(static_cast<float>(std::exp2(i)));
m_data[i + 155].vf = _mm_set1_ps(static_cast<float>(std::exp2(i)));
}
}