8000 Fix bug when srolling songs in battle event by Xele02 · Pull Request #347 · Xele02/UMO · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix bug when srolling songs in battle event #347

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,12 @@ protected override void LeaveForScrollStart()
}

// RVA: 0xF12254 Offset: 0xF12254 VA: 0xF12254 Slot: 53
// protected override void EnterForScrollEnd() { }
protected override void EnterForScrollEnd()
{
base.EnterForScrollEnd();
m_eventInfo.Enter();
m_battleInfo.Enter();
}

// RVA: 0xF122AC Offset: 0xF122AC VA: 0xF122AC Slot: 54
protected override void OnChangedDifficulty()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ public void OnDrag(PointerEventData eventData)
// // RVA: 0x166FBA0 Offset: 0x166FBA0 VA: 0x166FBA0
private bool CheckTouchId(PointerEventData eventData)
{
return eventData.pointerId == 0;
return eventData.pointerId == 0 || eventData.pointerId == -1;
}

// // RVA: 0x166FDA4 Offset: 0x166FDA4 VA: 0x166FDA4 Slot: 5
Expand Down
0