2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 15:51:22 +00:00

Don't mangle the first mipmap

This commit is contained in:
Phillip Stephens 2025-04-14 23:26:01 -07:00
parent bc7519d175
commit 166f901ffd

View File

@ -59,7 +59,7 @@ CTexture::CTexture(CInputStream& in, std::string_view label, EAutoMipmap automip
} }
if (sMangleMips) { if (sMangleMips) {
for (u32 i = 0; i < x8_mips; ++i) { for (u32 i = 1; i < x8_mips; ++i) {
MangleMipmap(i); MangleMipmap(i);
} }
} }