Skip to content

Commit

Permalink
Merge pull request #49 from Lion-Craft/48-memory-section-whitespace
Browse files Browse the repository at this point in the history
Fixed Memory section whitespace
  • Loading branch information
Lion-Craft authored Oct 13, 2023
2 parents 8fcec51 + 183f457 commit bcfcd72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tinyinfo/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ public void getdata(bool loop)
AppendTextSafe("\t\t\tVersion: " + gpu.DriverVersion + nl);

// Driver Date
AppendTextSafe("\t\t\tDate: " + gpu.DriverDate + nl);
AppendTextSafe("\t\t\tDate: " + gpu.DriverDate);

// Increment GPU ID
id++;
}

// Memory
AppendTextSafe(nl + nl + "Memory:");
AppendTextSafe(nl + "Memory:");
foreach (var memory in hardwareInfo.MemoryList)
{
// Write capacity into float and convert to GB
Expand Down

0 comments on commit bcfcd72

Please sign in to comment.