core: (fixes #265) Time is not rounded when created from int64x64_t

This commit is contained in:
Peter D. Barnes, Jr
2020-11-27 21:10:11 -08:00
committed by Tom Henderson
parent 2340fcf260
commit 7889786c30

View File

@@ -234,7 +234,7 @@ public:
}
}
explicit inline Time (const int64x64_t & v)
: m_data (v.GetHigh ())
: m_data (v.Round ())
{
if (g_markingTimes)
{