X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4c51a665c649f7579fb39e62070cef4f66b3210d..d57d0505d4c2186592833f18c3d40532d3a4bf0e:/src/osx/core/hidjoystick.cpp diff --git a/src/osx/core/hidjoystick.cpp b/src/osx/core/hidjoystick.cpp index d1563b650c..fcc0889e90 100644 --- a/src/osx/core/hidjoystick.cpp +++ b/src/osx/core/hidjoystick.cpp @@ -191,25 +191,25 @@ wxPoint wxJoystick::GetPosition() const int wxJoystick::GetZPosition() const { if (m_thread) - return m_thread->m_axe[wxJS_AXIS_Z]; + return m_thread->m_axe[wxJS_AXIS_Z-wxJS_AXIS_X]; return 0; } int wxJoystick::GetRudderPosition() const { if (m_thread) - return m_thread->m_axe[wxJS_AXIS_RUDDER]; + return m_thread->m_axe[wxJS_AXIS_RUDDER-wxJS_AXIS_X]; return 0; } int wxJoystick::GetUPosition() const { if (m_thread) - return m_thread->m_axe[wxJS_AXIS_U]; + return m_thread->m_axe[wxJS_AXIS_U-wxJS_AXIS_X]; return 0; } int wxJoystick::GetVPosition() const { if (m_thread) - return m_thread->m_axe[wxJS_AXIS_V]; + return m_thread->m_axe[wxJS_AXIS_V-wxJS_AXIS_X]; return 0; } @@ -782,7 +782,7 @@ void* wxJoystickThread::Entry() // // This is where the REAL dirty work gets done. // -// 1) Loops through each event the queue has recieved +// 1) Loops through each event the queue has received // 2) First, checks if the thread that is running the loop for // the polling has ended - if so it breaks out // 3) Next, it checks if there was an error getting this event from