Fix missing % that got lost in transfer

This commit is contained in:
TheRogueZeta 2021-06-07 15:10:27 -07:00 committed by Adam Honse
parent b72de2fe5e
commit 46d353bc66

View file

@ -835,7 +835,7 @@ void ResourceManager::DetectDevicesThreadFunction()
while(current_hid_device)
{
LOG_DEBUG("HID device [04X:%04X]", current_hid_device->vendor_id, current_hid_device->product_id);
LOG_DEBUG("HID device [%04X:%04X]", current_hid_device->vendor_id, current_hid_device->product_id);
detection_string = "";
DetectionProgressChanged();