1
0
Fork 0
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:
David Soler 2019-11-19 23:47:12 +01:00
parent b9bdef8ca9
commit 3413d18bc8

View file

@ -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;