From c06b957a8a55a1366c07814139a63f21caf5857c Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sun, 5 Mar 2023 20:38:01 +0100 Subject: [PATCH] hid: try to fix linux --- rpcs3/Input/hid_pad_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Input/hid_pad_handler.cpp b/rpcs3/Input/hid_pad_handler.cpp index 86596f5151..22498714eb 100644 --- a/rpcs3/Input/hid_pad_handler.cpp +++ b/rpcs3/Input/hid_pad_handler.cpp @@ -194,11 +194,11 @@ void hid_pad_handler::update_devices() { if (const hid_device_info* info = hid_get_device_info(dev)) { - hid_log.notice("%s adding device: vid=0x%x, pid=0x%x, serial='%s', path='%s'", m_type, info->vendor_id, info->product_id, m_enumerated_serials[path].data(), path); + hid_log.notice("%s adding device: vid=0x%x, pid=0x%x, path='%s'", m_type, info->vendor_id, info->product_id, path); } else { - hid_log.warning("%s adding device: vid=N/A, pid=N/A, serial='%s', path='%s'", m_type, m_enumerated_serials[path].data(), path); + hid_log.warning("%s adding device: vid=N/A, pid=N/A, path='%s'", m_type, path); } check_add_device(dev, path, m_enumerated_serials[path]);