mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-01-20 09:20:13 +00:00
fix missed parentheses
This commit is contained in:
parent
58c807983d
commit
013d637983
2 changed files with 2 additions and 1 deletions
|
@ -89,6 +89,7 @@ cd UltimateTrainingModpack/
|
|||
make
|
||||
# building the Layoff menu
|
||||
cd layoff/libnx
|
||||
pacman -Sy switch-freetype
|
||||
make
|
||||
cd ..
|
||||
make
|
||||
|
|
|
@ -78,7 +78,7 @@ int get_command_flag_cat_replace(u64 module_accessor, int category) {
|
|||
is_training_mode() &&
|
||||
menu.HITBOX_VIS &&
|
||||
!((status_kind >= FIGHTER_STATUS_KIND_CATCH && status_kind <= FIGHTER_STATUS_KIND_TREAD_FALL) ||
|
||||
(status_kind >= FIGHTER_STATUS_KIND_WAIT && status_kind <= FIGHTER_STATUS_KIND_REBOUND_JUMP));
|
||||
(status_kind >= FIGHTER_STATUS_KIND_WAIT && status_kind <= FIGHTER_STATUS_KIND_REBOUND_JUMP)));
|
||||
|
||||
u64 control_module = load_module(module_accessor, 0x48);
|
||||
int (*get_command_flag_cat)(u64, int) = (int (*)(u64, int)) load_module_impl(control_module, 0x350);
|
||||
|
|
Loading…
Reference in a new issue