Skip to content

Commit eec82ca

Browse files
committed
* Removido caractere % em hwmonitorutils retornando somente o valor decimal na carga de CPU
1 parent 35bd290 commit eec82ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

other/Lazarus/hwmonitorutils.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function THWMonitor.GetCPULoad: string;
7979
LastProcKernelTime := int64(ProcKernelTime);
8080
LastProcUserTime := int64(ProcUserTime);
8181

82-
Result := FloatToStrF(calc, ffFixed, 16, 2) + ' %';
82+
Result := FloatToStrF(calc, ffFixed, 16, 2);
8383
finally
8484
CloseHandle(hProcess);
8585
end;

0 commit comments

Comments
 (0)