Skip to content

Commit

Permalink
🐛 Fix #7
Browse files Browse the repository at this point in the history
  • Loading branch information
MinDBreaK committed Jun 4, 2018
1 parent 77aeb39 commit 3abaf02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MSI-LED-Custom/Form_Debug.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 2 additions & 0 deletions MSI-LED-Custom/LedManager/LedManager_Common.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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() );
}
}

Expand Down

0 comments on commit 3abaf02

Please sign in to comment.