mirror of
https://github.com/minetest/minetest.git
synced 2025-01-03 03:47:31 +01:00
Fix TODO in joystick code (#15179)
This commit is contained in:
parent
58ea11c2b3
commit
6dfd61cba0
@ -155,6 +155,11 @@ public:
|
||||
float getMovementDirection();
|
||||
float getMovementSpeed();
|
||||
|
||||
u8 getJoystickId() const
|
||||
{
|
||||
return m_joystick_id;
|
||||
}
|
||||
|
||||
f32 doubling_dtime;
|
||||
|
||||
private:
|
||||
|
@ -3976,10 +3976,9 @@ bool GUIFormSpecMenu::preprocessEvent(const SEvent& event)
|
||||
}
|
||||
|
||||
if (event.EventType == irr::EET_JOYSTICK_INPUT_EVENT) {
|
||||
/* TODO add a check like:
|
||||
if (event.JoystickEvent != joystick_we_listen_for)
|
||||
if (event.JoystickEvent.Joystick != m_joystick->getJoystickId())
|
||||
return false;
|
||||
*/
|
||||
|
||||
bool handled = m_joystick->handleEvent(event.JoystickEvent);
|
||||
if (handled) {
|
||||
if (m_joystick->wasKeyDown(KeyType::ESC)) {
|
||||
|
Loading…
Reference in New Issue
Block a user