Warning fixes

This commit is contained in:
Connor McLaughlin
2021-06-26 15:05:21 +10:00
parent 1a18e3ceb8
commit 06b009f361
10 changed files with 25 additions and 29 deletions

View File

@ -19,7 +19,7 @@ static constexpr std::array<u8, 256> ComputeECCFLUT()
for (u32 i = 0; i < 256; i++)
{
u32 j = (i << 1) ^ (i & 0x80 ? 0x11D : 0);
ecc_lut[i] = j;
ecc_lut[i] = static_cast<u8>(j);
}
return ecc_lut;
}
@ -30,7 +30,7 @@ static constexpr std::array<u8, 256> ComputeECCBLUT()
for (u32 i = 0; i < 256; i++)
{
u32 j = (i << 1) ^ (i & 0x80 ? 0x11D : 0);
ecc_lut[i ^ j] = i;
ecc_lut[i ^ j] = static_cast<u8>(i);
}
return ecc_lut;
}