Skip to content
Snippets Groups Projects
Unverified Commit a238cdb5 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1841 from ogniK5377/npad-mode-fix

Fixed crash with SetNpadMode
parents 1ad158b2 a9223c81
No related branches found
No related tags found
No related merge requests found
......@@ -518,8 +518,9 @@ Controller_NPad::NpadHoldType Controller_NPad::GetHoldType() const {
}
void Controller_NPad::SetNpadMode(u32 npad_id, NPadAssignments assignment_mode) {
ASSERT(npad_id < shared_memory_entries.size());
shared_memory_entries[npad_id].pad_assignment = assignment_mode;
const std::size_t npad_index = NPadIdToIndex(npad_id);
ASSERT(npad_index < shared_memory_entries.size());
shared_memory_entries[npad_index].pad_assignment = assignment_mode;
}
void Controller_NPad::VibrateController(const std::vector<u32>& controller_ids,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment