Skip to content

Commit

Permalink
List peripherals before motherboard zones
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerszabo committed Nov 6, 2018
1 parent f2e5604 commit 116a61f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RGBFusionTool/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,14 @@ public void Main(string[] args)

if (context.flag_List || context.verbosity > 0)
{
for (int i = 0; i < motherboardLEDs.Layout.Length; i++)
{
stdout.WriteLine("Zone {0}: {1}", i, motherboardLEDs.Layout[i]);
}
for (int i = 0; i < peripheralLEDs.Devices.Length; i++)
{
stdout.WriteLine("Peripheral {0}: {1}", i, peripheralLEDs.Devices[i]);
}
for (int i = 0; i < motherboardLEDs.Layout.Length; i++)
{
stdout.WriteLine("Zone {0}: {1}", i, motherboardLEDs.Layout[i]);
}
}

if (defaultZone.Count == 0 && zones.Count == 0 && peripheralsArgs.Count == 0)
Expand Down

0 comments on commit 116a61f

Please sign in to comment.