mirror of
https://github.com/isledecomp/isle.git
synced 2025-02-16 19:50:15 -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) {
|
switch (this->m_transitionType) {
|
||||||
case NO_ANIMATION:
|
case NO_ANIMATION:
|
||||||
FUN_1004bcf0();
|
Transition_None();
|
||||||
break;
|
break;
|
||||||
case DISSOLVE:
|
case DISSOLVE:
|
||||||
Transition_Dissolve();
|
Transition_Dissolve();
|
||||||
|
@ -217,7 +217,7 @@ MxResult MxTransitionManager::StartTransition(TransitionType p_animationType, Mx
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x1004bcf0
|
// OFFSET: LEGO1 0x1004bcf0
|
||||||
void MxTransitionManager::FUN_1004bcf0()
|
void MxTransitionManager::Transition_None()
|
||||||
{
|
{
|
||||||
LegoVideoManager *videoManager = VideoManager();
|
LegoVideoManager *videoManager = VideoManager();
|
||||||
videoManager->GetDisplaySurface()->FUN_100ba640();
|
videoManager->GetDisplaySurface()->FUN_100ba640();
|
||||||
|
|
|
@ -45,14 +45,13 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void EndTransition(MxBool p_notifyWorld);
|
void EndTransition(MxBool p_notifyWorld);
|
||||||
|
void Transition_None();
|
||||||
void Transition_Dissolve();
|
void Transition_Dissolve();
|
||||||
void Transition_Pixelation();
|
void Transition_Pixelation();
|
||||||
void Transition_Wipe();
|
void Transition_Wipe();
|
||||||
void Transition_Windows();
|
void Transition_Windows();
|
||||||
void Transition_Broken();
|
void Transition_Broken();
|
||||||
|
|
||||||
void FUN_1004bcf0();
|
|
||||||
|
|
||||||
void SubmitCopyRect(LPDDSURFACEDESC ddsc);
|
void SubmitCopyRect(LPDDSURFACEDESC ddsc);
|
||||||
void SetupCopyRect(LPDDSURFACEDESC ddsc);
|
void SetupCopyRect(LPDDSURFACEDESC ddsc);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue