From cc37e22c9461f4f26e4ea020fb190e92f51dc5ce Mon Sep 17 00:00:00 2001 From: Qudix <17361645+Qudix@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:37:49 -0600 Subject: [PATCH] fix: `Calendar` | `GetHoursPassedExact` --- include/RE/C/Calendar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/RE/C/Calendar.h b/include/RE/C/Calendar.h index 37edb134..340a76ac 100644 --- a/include/RE/C/Calendar.h +++ b/include/RE/C/Calendar.h @@ -42,7 +42,7 @@ namespace RE float GetHoursPassedExact() const noexcept { - return gameDaysPassed ? gameDaysPassed->value * 12.0f : 0.0f; + return gameDaysPassed ? gameDaysPassed->value * 24.0f : 0.0f; } std::uint16_t GetMonth() const noexcept