mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 06:39:57 +00:00
Fix time returning epoch time in milliseconds rather than in seconds
This commit is contained in:
parent
a93ff5ed0f
commit
703be1931a
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ public:
|
|||
|
||||
private:
|
||||
void GetCurrentTime(Kernel::HLERequestContext& ctx) {
|
||||
const s64 time_since_epoch{std::chrono::duration_cast<std::chrono::milliseconds>(
|
||||
const s64 time_since_epoch{std::chrono::duration_cast<std::chrono::seconds>(
|
||||
std::chrono::system_clock::now().time_since_epoch())
|
||||
.count()};
|
||||
IPC::RequestBuilder rb{ctx, 4};
|
||||
|
|
Loading…
Reference in a new issue