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

Merge pull request #561 from DarkLordZach/fix-odyssey-input-crash

Avoid initializing single-joycon layouts with handheld controller
parents 1ab133d7 ac88d3e8
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,10 @@ private:
for (size_t controller = 0; controller < mem.controllers.size(); controller++) {
for (int index = 0; index < HID_NUM_LAYOUTS; index++) {
// TODO(DarkLordZach): Is this layout/controller config actually invalid?
if (controller == Controller_Handheld && index == Layout_Single)
continue;
ControllerLayout& layout = mem.controllers[controller].layouts[index];
layout.header.num_entries = HID_NUM_ENTRIES;
layout.header.max_entry_index = HID_NUM_ENTRIES - 1;
......
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