Merge pull request #934 from lioncash/chrono

core_timing: Make GetGlobalTimeUs() return std::chrono::microseconds
This commit is contained in:
bunnei 2018-08-06 18:03:05 -04:00 committed by GitHub
commit 83ef37ca37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 16 deletions

View file

@ -17,6 +17,7 @@
* ScheduleEvent(periodInCycles - cyclesLate, callback, "whatever")
*/
#include <chrono>
#include <functional>
#include <string>
#include "common/common_types.h"
@ -86,7 +87,7 @@ void ClearPendingEvents();
void ForceExceptionCheck(s64 cycles);
u64 GetGlobalTimeUs();
std::chrono::microseconds GetGlobalTimeUs();
int GetDowncount();