mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
Merge pull request #708 from lioncash/drum-axis
Core: Fix Y-data not being assigned in Drums.cpp
This commit is contained in:
commit
0380bb61fa
@ -64,7 +64,7 @@ void Drums::GetState(u8* const data)
|
|||||||
m_stick->GetState(&x, &y);
|
m_stick->GetState(&x, &y);
|
||||||
|
|
||||||
ddata->sx = (x * 0x1F) + 0x20;
|
ddata->sx = (x * 0x1F) + 0x20;
|
||||||
ddata->sx = (y * 0x1F) + 0x20;
|
ddata->sy = (y * 0x1F) + 0x20;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: softness maybe
|
// TODO: softness maybe
|
||||||
|
Loading…
x
Reference in New Issue
Block a user