* Start numbering the CPUs with 1 instead of 0. This closes ticket #6816.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39426 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-11-14 11:29:50 +00:00
parent 954c60cb56
commit ee87203426

View File

@ -870,7 +870,7 @@ CPUUsageDataSource::_SetCPU(int32 cpu)
fCPU = cpu;
fLabel = "CPU";
if (SystemInfo().CPUCount() > 1)
fLabel << " " << cpu;
fLabel << " " << cpu + 1;
fShortLabel = fLabel;
fLabel << " usage";