From 3abaf024e1dcfc1fb7ef166f3a353012c9f66009 Mon Sep 17 00:00:00 2001 From: MinDBreaK Date: Mon, 4 Jun 2018 20:58:52 +0200 Subject: [PATCH] :bug: Fix #7 --- MSI-LED-Custom/Form_Debug.cs | 4 +++- MSI-LED-Custom/LedManager/LedManager_Common.cs | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/MSI-LED-Custom/Form_Debug.cs b/MSI-LED-Custom/Form_Debug.cs index 31ad1db..9d414fe 100644 --- a/MSI-LED-Custom/Form_Debug.cs +++ b/MSI-LED-Custom/Form_Debug.cs @@ -39,7 +39,9 @@ private void Form_Debug_Load(object sender, EventArgs e) textBox1.Text = "PnP Card : " + Program.NdaGraphicsInfo.Card_pDeviceId + "\r\n" + "Vendor Code : " + Program.vendorCode + "\r\n" + "Device Code : " + Program.deviceCode + "\r\n" - + "Subvendor Code : " + Program.subVendorCode + "\r\n"; + + "Subvendor Code : " + Program.subVendorCode + "\r\n" + + "Card name : " + Program.NdaGraphicsInfo.Card_FullName + "\r\n" + + "Card PnP2 : " + Program.NdaGraphicsInfo.Card_PNP; } if (Program.AdlGraphicsInfo.Card_PNP != null) { diff --git a/MSI-LED-Custom/LedManager/LedManager_Common.cs b/MSI-LED-Custom/LedManager/LedManager_Common.cs index fefae84..81af52a 100644 --- a/MSI-LED-Custom/LedManager/LedManager_Common.cs +++ b/MSI-LED-Custom/LedManager/LedManager_Common.cs @@ -23,10 +23,12 @@ public void InitLedManagers() { ledList.Add( new LedManager_AMD_Side() ); ledList.Add( new LedManager_AMD_Front()); + ledList.Add( new LedManager_AMD_Back() ); } else if ( this.manfacturer == Manufacturer.Nvidia ) { ledList.Add( new LedManager_NVD_Back() ); ledList.Add( new LedManager_NVD_Front()); + ledList.Add( new LedManager_NVD_Side() ); } }