improved accuracy of FUN_1004bcf0

This commit is contained in:
MattKC 2023-10-01 18:35:00 -07:00
parent b840e0f922
commit 75ee2997e6
3 changed files with 3 additions and 3 deletions

View File

@ -232,7 +232,7 @@ undefined4 MxDisplaySurface::vtable44(undefined4, undefined4*, undefined4, undef
}
// OFFSET: LEGO1 0x100ba640 STUB
void MxDisplaySurface::FUN_100ba640(MxDisplaySurface *p_displaySurface)
void MxDisplaySurface::FUN_100ba640()
{
// TODO
}

View File

@ -19,7 +19,7 @@ class MxDisplaySurface : public MxCore
void Reset();
static void FUN_100ba640(MxDisplaySurface *p_displaySurface);
void FUN_100ba640();
virtual MxResult Init(MxVideoParam &p_videoParam, LPDIRECTDRAWSURFACE p_ddSurface1, LPDIRECTDRAWSURFACE p_ddSurface2, LPDIRECTDRAWCLIPPER p_ddClipper);
virtual MxResult Create(MxVideoParam &p_videoParam);

View File

@ -108,7 +108,7 @@ void MxTransitionManager::EndTransition(MxBool p_unk)
void MxTransitionManager::FUN_1004bcf0()
{
LegoVideoManager *videoManager = VideoManager();
MxDisplaySurface::FUN_100ba640(videoManager->GetDisplaySurface());
videoManager->GetDisplaySurface()->FUN_100ba640();
EndTransition(TRUE);
}