mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-28 04:44:06 +00:00
Fix reading from menu option
This commit is contained in:
parent
6d9f0455d9
commit
8b5a345abc
1 changed files with 1 additions and 4 deletions
|
@ -184,7 +184,6 @@ pub unsafe fn get_command_flag_cat(module_accessor: &mut BattleObjectModuleAcces
|
||||||
module_accessor,
|
module_accessor,
|
||||||
button_config::ButtonCombo::InputPlayback,
|
button_config::ButtonCombo::InputPlayback,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
playback(MENU.playback_slot.get_random().into_idx().unwrap_or(0));
|
playback(MENU.playback_slot.get_random().into_idx().unwrap_or(0));
|
||||||
}
|
}
|
||||||
// Attack + Dpad Left: Record
|
// Attack + Dpad Left: Record
|
||||||
|
@ -281,7 +280,7 @@ pub unsafe fn lockout_record() {
|
||||||
.for_each(|mapped_input| {
|
.for_each(|mapped_input| {
|
||||||
*mapped_input = MappedInputs::default();
|
*mapped_input = MappedInputs::default();
|
||||||
});
|
});
|
||||||
CURRENT_FRAME_LENGTH = MENU.recording_frames as usize;
|
CURRENT_FRAME_LENGTH = MENU.recording_frames.into_frames();
|
||||||
P1_FRAME_LENGTH_MAPPING.lock()[CURRENT_RECORD_SLOT] = CURRENT_FRAME_LENGTH;
|
P1_FRAME_LENGTH_MAPPING.lock()[CURRENT_RECORD_SLOT] = CURRENT_FRAME_LENGTH;
|
||||||
LOCKOUT_FRAME = 30; // This needs to be this high or issues occur dropping shield - but does this cause problems when trying to record ledge?
|
LOCKOUT_FRAME = 30; // This needs to be this high or issues occur dropping shield - but does this cause problems when trying to record ledge?
|
||||||
BUFFER_FRAME = 0;
|
BUFFER_FRAME = 0;
|
||||||
|
@ -291,7 +290,6 @@ pub unsafe fn lockout_record() {
|
||||||
CURRENT_LR = RECORDED_LR;
|
CURRENT_LR = RECORDED_LR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pub unsafe fn playback(slot: usize) {
|
pub unsafe fn playback(slot: usize) {
|
||||||
if INPUT_RECORD == Pause {
|
if INPUT_RECORD == Pause {
|
||||||
println!("Tried to playback during lockout!");
|
println!("Tried to playback during lockout!");
|
||||||
|
@ -351,7 +349,6 @@ pub unsafe fn playback_ledge(slot: usize) {
|
||||||
CURRENT_PLAYBACK_SLOT = slot;
|
CURRENT_PLAYBACK_SLOT = slot;
|
||||||
CURRENT_FRAME_LENGTH = P1_FRAME_LENGTH_MAPPING.lock()[CURRENT_PLAYBACK_SLOT];
|
CURRENT_FRAME_LENGTH = P1_FRAME_LENGTH_MAPPING.lock()[CURRENT_PLAYBACK_SLOT];
|
||||||
|
|
||||||
|
|
||||||
INPUT_RECORD = Playback;
|
INPUT_RECORD = Playback;
|
||||||
POSSESSION = Player;
|
POSSESSION = Player;
|
||||||
INPUT_RECORD_FRAME = 0;
|
INPUT_RECORD_FRAME = 0;
|
||||||
|
|
Loading…
Reference in a new issue