Switch netcode to steady_clock

This commit is contained in:
Michael Cook (mackal)
2018-06-28 22:16:25 -04:00
parent a2e12667b4
commit 70f55179b6
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -68,8 +68,8 @@ namespace EQ
SequencePast
};
typedef std::chrono::high_resolution_clock::time_point Timestamp;
typedef std::chrono::high_resolution_clock Clock;
typedef std::chrono::steady_clock::time_point Timestamp;
typedef std::chrono::steady_clock Clock;
struct DaybreakConnectionStats
{
@@ -282,4 +282,4 @@ namespace EQ
friend class DaybreakConnection;
};
}
}
}