Fix conversion warning

Continuing what was started in #3381
This commit is contained in:
Chris Thrasher 2025-01-08 22:18:19 -07:00
parent 62a2a39650
commit 662830e90a

View File

@ -309,7 +309,7 @@ JoystickState JoystickImpl::JoystickImpl::update()
if (!data) if (!data)
continue; continue;
int buttonIndex = 0; std::size_t buttonIndex = 0;
hid_item_t item; hid_item_t item;
while (hid_get_item(data, &item)) while (hid_get_item(data, &item))