Fix World Map cursor threshold and touchpad issues (#190)

* input_patches: fix cursor threshold and SFX during tutorial

* input_patches: fix touchpad flag magnetism
This commit is contained in:
Hyper
2025-01-25 18:51:25 +00:00
committed by GitHub
parent 470d8f797b
commit 5441075c5e
2 changed files with 64 additions and 45 deletions
+5 -3
View File
@@ -647,16 +647,18 @@ after_instruction = true
# SWA::CWorldMapCamera - disable rotation deadzone for touch
[[midasm_hook]]
name = "WorldMapTouchSupportMidAsmHook"
name = "WorldMapDeadzoneMidAsmHook"
address = 0x824862EC
registers = ["r30"]
jump_address_on_true = 0x824862F0
# SWA::CWorldMapCamera - disable flag magnetism for touch
[[midasm_hook]]
name = "WorldMapTouchMagnetismSupportMidAsmHook"
name = "WorldMapMagnetismMidAsmHook"
address = 0x824866D4
registers = ["f0"]
jump_address_on_true = 0x82486838
jump_address_on_true = 0x824866D8
jump_address_on_false = 0x82486838
# SWA::CWorldMapCamera - touch and D-Pad support for camera adjustment threshold on the X axis
[[midasm_hook]]