Fix laptop and monitor device type strings

This commit is contained in:
Adam Honse 2025-08-22 21:52:31 -05:00
parent fbb7d16039
commit 221f5007ab

View file

@ -2207,6 +2207,10 @@ std::string device_type_to_str(device_type type)
return "Accessory";
case DEVICE_TYPE_KEYPAD:
return "Keypad";
case DEVICE_TYPE_LAPTOP:
return "Laptop";
case DEVICE_TYPE_MONITOR:
return "Monitor";
default:
return "Unknown";
}