From 54802fdd4b781055d6374e66ef9539ed0e552987 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Tue, 21 Jan 2025 14:18:04 -0600 Subject: [PATCH] Fix device type strings --- RGBController/RGBController.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/RGBController/RGBController.cpp b/RGBController/RGBController.cpp index 6764da61..36d61654 100644 --- a/RGBController/RGBController.cpp +++ b/RGBController/RGBController.cpp @@ -1772,12 +1772,14 @@ std::string device_type_to_str(device_type type) return "Light"; case DEVICE_TYPE_SPEAKER: return "Speaker"; - case DEVICE_TYPE_STORAGE: - return "Storage"; case DEVICE_TYPE_VIRTUAL: return "Virtual"; + case DEVICE_TYPE_STORAGE: + return "Storage"; case DEVICE_TYPE_CASE: return "Case"; + case DEVICE_TYPE_MICROPHONE: + return "Microphone"; case DEVICE_TYPE_ACCESSORY: return "Accessory"; case DEVICE_TYPE_KEYPAD: