Skip to content

Commit b421f34

Browse files
authored
Merge branch 'HDR-Development:dev' into PMRoyProject
2 parents 8171bf8 + 12a11e5 commit b421f34

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

fighters/common/src/function_hooks/controls.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1153,10 +1153,10 @@ pub fn install() {
11531153
skyline::patching::Patch::in_text(0x3666AF0).data(0xAA0803EAu32);
11541154

11551155
// Removes 10f C-stick lockout for tilt stick and special stick
1156-
skyline::patching::Patch::in_text(0x17527dc).data(0x2A1F03FA);
1157-
skyline::patching::Patch::in_text(0x17527b0).nop();
1158-
skyline::patching::Patch::in_text(0x17527b4).nop();
1159-
skyline::patching::Patch::in_text(0x17527b8).nop();
1156+
skyline::patching::Patch::in_text(0x17532ac).data(0x2A1F03FA);
1157+
skyline::patching::Patch::in_text(0x17532b0).nop();
1158+
skyline::patching::Patch::in_text(0x17532b4).nop();
1159+
skyline::patching::Patch::in_text(0x17532b8).nop();
11601160

11611161
// Prevents buffered C-stick aerials from triggering nair
11621162
skyline::patching::Patch::in_text(0x6be664).data(0x52800040);

src/lua.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ unsafe fn set_parry_button_shield_text(ctx: &skyline::hooks::InlineCtx) {
418418
}
419419
}
420420

421-
#[skyline::hook(offset = 0x1d33b80, inline)]
421+
#[skyline::hook(offset = 0x1d33c80, inline)]
422422
unsafe fn set_parry_button_taunt_text(ctx: &skyline::hooks::InlineCtx) {
423423
let sp = (ctx as *const _ as *const u8).add(0x100);
424424
let ptr = *(sp.add(0xa8) as *const u64);

src/online.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use skyline::hooks::InlineCtx;
22
use std::fmt::Display;
33

4-
#[skyline::from_offset(0x37a1270)]
4+
#[skyline::from_offset(0x37a1ef0)]
55
pub unsafe fn set_text_string(pane: u64, string: *const u8);
66

77
pub unsafe fn get_pane_by_name(arg: u64, arg2: *const u8) -> [u64; 4] {

0 commit comments

Comments
 (0)