Skip to content

Commit

Permalink
changed the way the sensor dump is made
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotr7 committed Jun 9, 2020
1 parent 4667df1 commit f401e26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project-Aurora/Project-Aurora/Utils/HardwareMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static bool TryDump()
lines.Add("-----");
lines.Add(hw.Name);
lines.Add("Sensors:");
foreach (var sensor in hw.Sensors.OrderBy(s => s.SensorType))
foreach (var sensor in hw.Sensors.OrderBy(s => s.Identifier))
{
lines.Add($"Name: {sensor.Name}, Id: {sensor.Identifier}, Type: {sensor.SensorType}");
}
Expand Down

0 comments on commit f401e26

Please sign in to comment.