Fix ResTIMG BE everywhere

This commit is contained in:
PJB3005
2026-03-02 21:40:50 +01:00
parent 7513c820cf
commit cdcd6beb29
3 changed files with 21 additions and 21 deletions
+3 -3
View File
@@ -246,12 +246,12 @@ static ResTIMG* createTimg(u16 width, u16 height, u32 format) {
cLib_memSet(timg, 0, bufferSize);
timg->format = format;
timg->alphaEnabled = false;
timg->width = RES_U16(width);
timg->height = RES_U16(height);
timg->width = width;
timg->height = height;
timg->minFilter = GX_LINEAR;
timg->magFilter = GX_LINEAR;
timg->mipmapCount = 1;
timg->imageOffset = RES_U32(0x20);
timg->imageOffset = 0x20;
return timg;
}