mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
rename FUN_1004bcf0 to Transition_None
This commit is contained in:
parent
8e87b5b4c8
commit
666c65fa4f
2 changed files with 3 additions and 4 deletions
|
@ -44,7 +44,7 @@ MxResult MxTransitionManager::Tickle()
|
|||
|
||||
switch (this->m_transitionType) {
|
||||
case NO_ANIMATION:
|
||||
FUN_1004bcf0();
|
||||
Transition_None();
|
||||
break;
|
||||
case DISSOLVE:
|
||||
Transition_Dissolve();
|
||||
|
@ -217,7 +217,7 @@ MxResult MxTransitionManager::StartTransition(TransitionType p_animationType, Mx
|
|||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1004bcf0
|
||||
void MxTransitionManager::FUN_1004bcf0()
|
||||
void MxTransitionManager::Transition_None()
|
||||
{
|
||||
LegoVideoManager *videoManager = VideoManager();
|
||||
videoManager->GetDisplaySurface()->FUN_100ba640();
|
||||
|
|
|
@ -45,14 +45,13 @@ class MxTransitionManager : public MxCore
|
|||
|
||||
private:
|
||||
void EndTransition(MxBool p_notifyWorld);
|
||||
void Transition_None();
|
||||
void Transition_Dissolve();
|
||||
void Transition_Pixelation();
|
||||
void Transition_Wipe();
|
||||
void Transition_Windows();
|
||||
void Transition_Broken();
|
||||
|
||||
void FUN_1004bcf0();
|
||||
|
||||
void SubmitCopyRect(LPDDSURFACEDESC ddsc);
|
||||
void SetupCopyRect(LPDDSURFACEDESC ddsc);
|
||||
|
||||
|
|
Loading…
Reference in a new issue