| 20 | int16_t ccValues[128] = {}; |
| 21 | |
| 22 | std::string getName() override { |
| 23 | const char* name = glfwGetJoystickName(deviceId); |
| 24 | if (!name) |
| 25 | return ""; |
| 26 | return name; |
| 27 | } |
| 28 | |
| 29 | void step() { |
| 30 | if (!glfwJoystickPresent(deviceId)) |
nothing calls this directly
no outgoing calls
no test coverage detected