| 60 | } |
| 61 | |
| 62 | void SwitchVirtualGamepadHandler::ExitOutputThread() |
| 63 | { |
| 64 | m_outputThreadIsRunning = false; |
| 65 | svcCancelSynchronization(m_outputThread.handle); |
| 66 | threadWaitForExit(&m_outputThread); |
| 67 | threadClose(&m_outputThread); |
| 68 | } |
| 69 | |
| 70 | static_assert(JOYSTICK_MAX == 32767 && JOYSTICK_MIN == -32767, |
| 71 | "JOYSTICK_MAX and/or JOYSTICK_MIN has incorrect values. Update libnx"); |
nothing calls this directly
no outgoing calls
no test coverage detected