diff --git a/src/training/input_record.rs b/src/training/input_record.rs index 643bde0..716fb23 100644 --- a/src/training/input_record.rs +++ b/src/training/input_record.rs @@ -35,7 +35,7 @@ pub unsafe fn get_command_flag_cat(module_accessor: &mut BattleObjectModuleAcces playback(); } // Attack + Dpad Left: Record - else if ControlModule::check_button_on(module_accessor, *CONTROL_PAD_BUTTON_CATCH) + else if ControlModule::check_button_on(module_accessor, *CONTROL_PAD_BUTTON_ATTACK) && ControlModule::check_button_trigger(module_accessor, *CONTROL_PAD_BUTTON_APPEAL_S_L) { record(); @@ -82,4 +82,4 @@ pub unsafe fn handle_get_npad_state( *state = P1_NPAD_STATES.lock()[INPUT_RECORD_FRAME]; (*state).updateCount = update_count; } -} \ No newline at end of file +}