mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-04 04:22:51 +00:00
[UWP] Fix time query precision (#1284)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#include "pch.h"
|
||||
#include "pch.h"
|
||||
#include "app.h"
|
||||
|
||||
#include <Windows.h>
|
||||
@@ -99,8 +99,8 @@ void App::Run()
|
||||
UWPSetQueryTimeFunc([]()
|
||||
{
|
||||
static auto timeStart = std::chrono::high_resolution_clock::now();
|
||||
auto delta = std::chrono::high_resolution_clock::now() - timeStart;
|
||||
return (double)std::chrono::duration_cast<std::chrono::seconds>(delta).count();
|
||||
std::chrono::duration<double> time_span = std::chrono::duration_cast<std::chrono::duration<double>>(std::chrono::high_resolution_clock::now() - timeStart);
|
||||
return time_span.count();
|
||||
});
|
||||
|
||||
UWPSetSleepFunc([](double seconds) { std::this_thread::sleep_for(std::chrono::duration<double>(seconds)); });
|
||||
|
||||
Reference in New Issue
Block a user