Assertion in MxTransitionManager::StartTransition is beta10-only

This fixes an assertion error when:
1. Start the game
2  Skip intro (probably optional)
3. Turn left to the elevator room
4. Enter the elevator
5. Press the (I) button
This commit is contained in:
Anonymous Maarten 2025-05-31 02:23:59 +02:00
parent 941bc6ffa9
commit 7a45713aaf

View File

@ -93,7 +93,9 @@ MxResult MxTransitionManager::StartTransition(
MxBool p_playMusicInAnim
)
{
#ifdef BETA10
assert(m_mode == e_idle);
#endif
if (m_mode == e_idle) {
if (!p_playMusicInAnim) {