Add MxDSAction::Flag_Bit5

This commit is contained in:
Regan Green 2023-10-04 21:41:15 -04:00
parent 4496905736
commit 45c2058e46
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ class MxDSAction : public MxDSObject
{
Flag_Looping = 0x01,
Flag_Bit3 = 0x04,
Flag_Bit5 = 0x10,
Flag_Enabled = 0x20,
Flag_Parsed = 0x80,
Flag_Bit9 = 0x200,

View File

@ -336,7 +336,7 @@ void MxTransitionManager::SetupCopyRect(DDSURFACEDESC &ddsc)
}
// Setup display surface
if ((m_waitIndicator->GetAction()->GetFlags() & 0x10) != 0)
if ((m_waitIndicator->GetAction()->GetFlags() & MxDSAction::Flag_Bit5) != 0)
{
MxDisplaySurface *displaySurface = VideoManager()->GetDisplaySurface();
MxBool unkbool = FALSE;