Skip to content

Commit

Permalink
Correct an error in the timestamp subtracting logic (Fixes OpenMW#3105)
Browse files Browse the repository at this point in the history
  • Loading branch information
scrawl committed Dec 25, 2015
1 parent 2162f21 commit a1e163e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/openmw/mwworld/timestamp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace MWWorld
if (left.getHour()<right.getHour())
{
hours = 24-right.getHour()+left.getHour();
++days;
--days;
}
else
{
Expand Down

0 comments on commit a1e163e

Please sign in to comment.