mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-02-01 06:57:25 +00:00
Fixed error on mash switch, break instruction was missing for down b and up smash.
This commit is contained in:
parent
b9bdef8ca9
commit
3413d18bc8
1 changed files with 2 additions and 0 deletions
|
@ -71,8 +71,10 @@ void get_command_flag_cat(u64 module_accessor, int category, int& flag) {
|
|||
break;
|
||||
case MASH_DOWN_B:
|
||||
flag |= FIGHTER_PAD_CMD_CAT1_FLAG_SPECIAL_LW;
|
||||
break;
|
||||
case MASH_UP_SMASH:
|
||||
flag |= FIGHTER_PAD_CMD_CAT1_FLAG_ATTACK_HI4;
|
||||
break;
|
||||
case MASH_GRAB:
|
||||
flag |= FIGHTER_PAD_CMD_CAT1_FLAG_CATCH;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue