Fix wrong return value in Stopwatch::GetElapsedTicks

This commit is contained in:
Michał Janiszewski 2016-11-05 23:40:28 +01:00 committed by Ted John
parent a4f9d41f57
commit c9a1ce593c
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ uint64 Stopwatch::GetElapsedTicks() const
}
}
return _total;
return result;
}
uint64 Stopwatch::GetElapsedMilliseconds() const