mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
fix(TransitionState): Not shown because of broken if statement check
This commit is contained in:
parent
d07d851f4b
commit
f226cd3b1a
@ -85,9 +85,7 @@ namespace big
|
||||
if (last_state == eTransitionState::TRANSITION_STATE_MAX)
|
||||
last_state = state;
|
||||
|
||||
if (state == eTransitionState::TRANSITION_STATE_EMPTY || state > eTransitionState::TRANSITION_STATE_DLC_INTRO_BINK)
|
||||
return;
|
||||
if (last_state == state)
|
||||
if (last_state == state || state == eTransitionState::TRANSITION_STATE_EMPTY || state > eTransitionState::TRANSITION_STATE_DLC_INTRO_BINK)
|
||||
return;
|
||||
|
||||
if (HUD::BUSYSPINNER_IS_ON())
|
||||
|
Loading…
x
Reference in New Issue
Block a user