Fix compilation issues (#2)

This commit is contained in:
InoriRus
2021-12-06 17:23:53 +10:00
parent 0242926a7c
commit ba00d71a33
6 changed files with 15 additions and 11 deletions
+1 -1
View File
@@ -431,7 +431,7 @@ void TileConvertTiledToLinear(void* dst, const void* src, TileMode mode, uint32_
auto* dstptr = static_cast<uint8_t*>(dst);
const auto* srcptr = static_cast<const uint8_t*>(src);
for (int l = 0; l < levels; l++)
for (uint32_t l = 0; l < levels; l++)
{
Tiler1d t;
t.Init(dfmt, nfmt, mip_width, mip_height, padded_width[l], padded_height[l], neo);