Another one
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Failing after 1m22s

This commit is contained in:
2024-09-30 23:49:11 -04:00
parent 48091496d5
commit ae073b3a96

View File

@@ -83,7 +83,7 @@ void RWindow::refresh() {
auto frame_time = end_frame - begin_frame;
int frame_time_ms = std::chrono::duration_cast<std::chrono::milliseconds>(frame_time).count();
float frame_time_s = frame_time_ms / 1000.f;
delta_time = frame_time_ms;
delta_time = frame_time_s;
refresh_rate = 1.f / delta_time;