Skip to content

Commit 46d353b

Browse files
TheRogueZetaCalcProgrammer1
authored andcommitted
Fix missing % that got lost in transfer
1 parent b72de2f commit 46d353b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ResourceManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ void ResourceManager::DetectDevicesThreadFunction()
835835

836836
while(current_hid_device)
837837
{
838-
LOG_DEBUG("HID device [04X:%04X]", current_hid_device->vendor_id, current_hid_device->product_id);
838+
LOG_DEBUG("HID device [%04X:%04X]", current_hid_device->vendor_id, current_hid_device->product_id);
839839

840840
detection_string = "";
841841
DetectionProgressChanged();

0 commit comments

Comments
 (0)