diff options
Diffstat (limited to 'src/Main/Message/BMG.cpp')
| -rw-r--r-- | src/Main/Message/BMG.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Main/Message/BMG.cpp b/src/Main/Message/BMG.cpp index cb9deac8..2a00b26c 100644 --- a/src/Main/Message/BMG.cpp +++ b/src/Main/Message/BMG.cpp @@ -87,8 +87,12 @@ THUMB u16 BMGFileInfo::func_020371c8(u32 *pFile, s16 unk_18) { //! TODO: fake? this->pDAT1 = (SectionDAT1 *) (pSection + 1); break; - case BMG_TAG_FLW1: this->pFLW1 = (SectionFLW1 *) pSection; break; - case BMG_TAG_FLI1: this->pFLI1 = (SectionFLI1 *) pSection; break; + case BMG_TAG_FLW1: + this->pFLW1 = (SectionFLW1 *) pSection; + break; + case BMG_TAG_FLI1: + this->pFLI1 = (SectionFLI1 *) pSection; + break; } pSection = (SectionBase *) ((u8 *) pSection + pSection->size); |
