Skip to content

Commit

Permalink
Add icon
Browse files Browse the repository at this point in the history
  • Loading branch information
GradualSyrup committed Feb 2, 2024
1 parent 64e8983 commit e6043d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified src/static/layout.arc
Binary file not shown.
4 changes: 2 additions & 2 deletions src/training/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,12 +419,12 @@ pub unsafe fn handle_add_damage(
}

// Control L+R+A Resets
// This function already has a training mode check in it so we don't need to toggle in training mode for this
// This function already has a training mode check in it, so we don't need to toggle in training mode for this
#[skyline::hook(offset = *OFFSET_TRAINING_RESET_CHECK, inline)]
unsafe fn lra_handle(ctx: &mut InlineCtx) {
let x8 = ctx.registers[8].x.as_mut();
if !(MENU.lra_reset.as_bool()) {
*x8 = 0;
*x8 = 0;
}
}

Expand Down

0 comments on commit e6043d3

Please sign in to comment.