Fix order

This commit is contained in:
Christian Semmler 2024-03-08 14:54:40 -05:00
parent 9258433c11
commit dc6131819f

View File

@ -311,6 +311,13 @@ LegoResult LegoLOD::Read(Tgl::Renderer* p_renderer, LegoTextureContainer* p_text
return FAILURE; return FAILURE;
} }
// STUB: LEGO1 0x100aad00
LegoResult LegoLOD::FUN_100aad00(LegoTextureInfo* p_textureInfo)
{
// TODO
return SUCCESS;
}
// FUNCTION: LEGO1 0x100aae20 // FUNCTION: LEGO1 0x100aae20
LegoBool LegoLOD::FUN_100aae20(const LegoChar* p_name) LegoBool LegoLOD::FUN_100aae20(const LegoChar* p_name)
{ {
@ -323,13 +330,6 @@ LegoBool LegoLOD::FUN_100aae20(const LegoChar* p_name)
return FALSE; return FALSE;
} }
// STUB: LEGO1 0x100aad00
LegoResult LegoLOD::FUN_100aad00(LegoTextureInfo* p_textureInfo)
{
// TODO
return SUCCESS;
}
inline BOOL GetMeshData(IDirect3DRMMesh*& mesh, D3DRMGROUPINDEX& index, Tgl::Mesh* pMesh) inline BOOL GetMeshData(IDirect3DRMMesh*& mesh, D3DRMGROUPINDEX& index, Tgl::Mesh* pMesh)
{ {
mesh = ((TglImpl::MeshImpl*) pMesh)->ImplementationData()->groupMesh; mesh = ((TglImpl::MeshImpl*) pMesh)->ImplementationData()->groupMesh;