From 7ea36a5948247c1182cbc37f249d7998fe0d007a Mon Sep 17 00:00:00 2001 From: Krystof Pistek Date: Tue, 25 Jan 2022 00:05:25 +0100 Subject: [PATCH] Add support (detection code only) for MSI B350M Mortar motherboard (MS-7A37) --- Controllers/MSIRGBController/MSIRGBControllerDetect.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Controllers/MSIRGBController/MSIRGBControllerDetect.cpp b/Controllers/MSIRGBController/MSIRGBControllerDetect.cpp index d3c1a186..9fb9013a 100644 --- a/Controllers/MSIRGBController/MSIRGBControllerDetect.cpp +++ b/Controllers/MSIRGBController/MSIRGBControllerDetect.cpp @@ -52,6 +52,7 @@ msi_device compatible_devices[] = {"7A72", false}, {"7A78", false}, {"7A79", false}, + {"7A37", false}, {"7B89", true }, {"7B90", true }, {"7B19", true }, @@ -83,7 +84,7 @@ void DetectMSIRGBControllers(std::vector &rgb_controllers) std::string board_dmi = board.getMainboard(); std::string manufacturer = board.getManufacturer(); - if (manufacturer != "Micro-Star International Co., Ltd." && manufacturer != "Micro-Star International Co., Ltd") + if (manufacturer != "Micro-Star International Co., Ltd." && manufacturer != "Micro-Star International Co., Ltd" && manufacturer != "MSI") { return; }