Skip to content

Commit

Permalink
Merge pull request dolphin-emu#708 from lioncash/drum-axis
Browse files Browse the repository at this point in the history
Core: Fix Y-data not being assigned in Drums.cpp
  • Loading branch information
delroth committed Aug 1, 2014
2 parents f6995d1 + 31e9b1e commit 0380bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/WiimoteEmu/Attachment/Drums.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void Drums::GetState(u8* const data)
m_stick->GetState(&x, &y);

ddata->sx = (x * 0x1F) + 0x20;
ddata->sx = (y * 0x1F) + 0x20;
ddata->sy = (y * 0x1F) + 0x20;
}

// TODO: softness maybe
Expand Down

0 comments on commit 0380bb6

Please sign in to comment.