Remove more unused code.
This commit is contained in:
parent
c2146921f9
commit
3d9712a99e
|
@ -97,12 +97,6 @@ void Timer::AddTimeDifference()
|
||||||
m_StartTime += GetTimeDifference();
|
m_StartTime += GetTimeDifference();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wind back the starting time to a custom time
|
|
||||||
void Timer::WindBackStartingTime(u64 WindBack)
|
|
||||||
{
|
|
||||||
m_StartTime += WindBack;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the time elapsed since the Start()
|
// Get the time elapsed since the Start()
|
||||||
u64 Timer::GetTimeElapsed()
|
u64 Timer::GetTimeElapsed()
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,7 +35,6 @@ public:
|
||||||
// The time difference is always returned in milliseconds, regardless of alternative internal representation
|
// The time difference is always returned in milliseconds, regardless of alternative internal representation
|
||||||
u64 GetTimeDifference();
|
u64 GetTimeDifference();
|
||||||
void AddTimeDifference();
|
void AddTimeDifference();
|
||||||
void WindBackStartingTime(u64 WindBack);
|
|
||||||
|
|
||||||
static void IncreaseResolution();
|
static void IncreaseResolution();
|
||||||
static void RestoreResolution();
|
static void RestoreResolution();
|
||||||
|
|
Loading…
Reference in New Issue