mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-27 18:34:06 +00:00
Named unknown function in LegoTextureInfo (#1544)
This commit is contained in:
@@ -64,7 +64,7 @@ void LegoFlcTexturePresenter::LoadFrame(MxStreamChunk* p_chunk)
|
||||
void LegoFlcTexturePresenter::PutFrame()
|
||||
{
|
||||
if (m_texture != NULL && m_rectCount != 0) {
|
||||
m_texture->FUN_10066010(m_frameBitmap->GetImage());
|
||||
m_texture->LoadBits(m_frameBitmap->GetImage());
|
||||
m_rectCount = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -114,7 +114,7 @@ void LegoPhonemePresenter::LoadFrame(MxStreamChunk* p_chunk)
|
||||
void LegoPhonemePresenter::PutFrame()
|
||||
{
|
||||
if (m_textureInfo != NULL && m_rectCount != 0) {
|
||||
m_textureInfo->FUN_10066010(m_frameBitmap->GetImage());
|
||||
m_textureInfo->LoadBits(m_frameBitmap->GetImage());
|
||||
m_rectCount = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -104,7 +104,7 @@ MxResult LegoTexturePresenter::Store()
|
||||
}
|
||||
}
|
||||
else {
|
||||
textureInfo->FUN_10066010(texture->GetImage()->GetBits());
|
||||
textureInfo->LoadBits(texture->GetImage()->GetBits());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user