Fix hookshot hanging w/ touch controls

This commit is contained in:
Luke Street
2026-06-15 22:55:30 -06:00
parent db87b91954
commit 8e9d4d624a
3 changed files with 18 additions and 2 deletions
+10
View File
@@ -175,3 +175,13 @@ bool daAlink_c::checkAimContext() {
return false;
}
}
bool daAlink_c::checkTouchAimCaptureContext() {
switch (mProcID) {
case PROC_HOOKSHOT_ROOF_WAIT:
case PROC_HOOKSHOT_WALL_WAIT:
return false;
default:
return checkAimContext();
}
}