object_snowwd (#1293)

* rename

* prefix fix
This commit is contained in:
Nuss 2023-06-17 19:42:40 +02:00 committed by GitHub
parent 491870c355
commit e73034f8cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
<Root>
<File Name="object_snowwd" Segment="6">
<DList Name="object_snowwd_DL_000190" Offset="0x190" />
<DList Name="object_snowwd_DL_000198" Offset="0x198" />
<Texture Name="object_snowwd_Tex_002A0" OutName="tex_002A0" Format="rgba16" Width="32" Height="64" Offset="0x2A0" />
<Texture Name="object_snowwd_Tex_0012A0" OutName="tex_0012A0" Format="rgba16" Width="32" Height="32" Offset="0x12A0" />
<Texture Name="object_snowwd_Tex_001AA0" OutName="tex_001AA0" Format="rgba16" Width="32" Height="64" Offset="0x1AA0" />
<DList Name="gSnowTreeEmptyDL" Offset="0x190" />
<DList Name="gSnowTreeDL" Offset="0x198" />
<Texture Name="gSnowTreeLeavesTex" OutName="snow_tree_leaves" Format="rgba16" Width="32" Height="64" Offset="0x2A0" />
<Texture Name="gSnowTreeBodyTex" OutName="snow_tree_body" Format="rgba16" Width="32" Height="32" Offset="0x12A0" />
<Texture Name="gSnowTreeSnowLeavesTex" OutName="snow_tree_snow_leaves" Format="rgba16" Width="32" Height="64" Offset="0x1AA0" />
</File>
</Root>

View File

@ -129,8 +129,8 @@ void EnSnowwd_Draw(Actor* thisx, PlayState* play) {
gSPMatrix(POLY_OPA_DISP++, Matrix_NewMtx(play->state.gfxCtx), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);
Gfx_SetupDL25_Opa(play->state.gfxCtx);
gSPSegment(POLY_OPA_DISP++, 0x08, Lib_SegmentedToVirtual(object_snowwd_Tex_001AA0));
gSPDisplayList(POLY_OPA_DISP++, object_snowwd_DL_000198);
gSPSegment(POLY_OPA_DISP++, 0x08, Lib_SegmentedToVirtual(gSnowTreeSnowLeavesTex));
gSPDisplayList(POLY_OPA_DISP++, gSnowTreeDL);
CLOSE_DISPS(play->state.gfxCtx);
}