This commit is contained in:
spx
2011-05-27 18:39:57 +00:00
parent 68bc25ee82
commit 9a19d8808e
5 changed files with 11 additions and 11 deletions

View File

@ -55,7 +55,7 @@ bool CMeasureNetIn::Update()
if (m_Cumulative)
{
m_Value = (double)GetNetStatsValue(NET_IN);
m_Value = (double)(__int64)GetNetStatsValue(NET_IN);
}
else
{
@ -82,7 +82,7 @@ bool CMeasureNetIn::Update()
m_FirstTime = false;
}
m_Value = (double)value;
m_Value = (double)(__int64)value;
}
return PostUpdate();