Skip to content

Commit

Permalink
fix: Calendar | GetHoursPassedExact
Browse files Browse the repository at this point in the history
  • Loading branch information
qudix committed Nov 5, 2024
1 parent a1c6e92 commit cc37e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/RE/C/Calendar.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cc37e22

Please sign in to comment.