mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Core: Fix Y-data not being assigned in Drums.cpp
Prior to this we were overwriting the x-axis with y-axis data.
This commit is contained in:
parent
5516b0382c
commit
31e9b1ebdd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue