fix bgobj particle block

This commit is contained in:
TakaRikka
2026-03-13 01:54:35 -07:00
parent c05691a0bb
commit 5bc8cfa9f6
+2 -2
View File
@@ -879,8 +879,8 @@ void daBgObj_c::setParticle() {
u32* partBlockItems = (u32*)mSpecData.mpParticleBlock;
partBlockItems++;
for (; partNum != 0; partNum--) {
u32 flags = *partBlockItems++;
u16 res_id = *partBlockItems;
u32 flags = *(BE(u32)*)partBlockItems++;
u16 res_id = *(BE(u32)*)partBlockItems;
*partBlockItems++;
GXColor prmColor = { 0xFF, 0xFF, 0xFF, 0xFF };