Skip to content

Commit 16ad77a

Browse files
authored
Disambiguate TotalMemory and VirtualMemory identifiers (#1817)
Both use the "ram" hardware identifier which makes it difficult for downstream applications to disambiguate them.
1 parent cc9b897 commit 16ad77a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibreHardwareMonitorLib/Hardware/Memory/VirtualMemory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace LibreHardwareMonitor.Hardware.Memory;
99
internal sealed class VirtualMemory : Hardware
1010
{
1111
public VirtualMemory(ISettings settings)
12-
: base("Virtual Memory", new Identifier("ram"), settings)
12+
: base("Virtual Memory", new Identifier("vram"), settings)
1313
{
1414
VirtualMemoryUsed = new Sensor("Memory Used", 2, SensorType.Data, this, settings);
1515
ActivateSensor(VirtualMemoryUsed);

0 commit comments

Comments
 (0)