1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

Correct an error in the timestamp subtracting logic (Fixes #3105)

This commit is contained in:
scrawl 2015-12-26 00:26:13 +01:00
parent 2162f21550
commit a1e163ed20

View file

@ -96,7 +96,7 @@ namespace MWWorld
if (left.getHour()<right.getHour()) if (left.getHour()<right.getHour())
{ {
hours = 24-right.getHour()+left.getHour(); hours = 24-right.getHour()+left.getHour();
++days; --days;
} }
else else
{ {