[Client] Fix compilation error on Linux regarding Timestamp constructor

This commit is contained in:
David Cernat 2020-05-20 09:38:14 +03:00
parent 94b211dd4f
commit ea57aaef34

View File

@ -834,7 +834,7 @@ void ObjectList::setGoldPoolsForObjects(MWWorld::CellStore* cellStore)
LOG_APPEND(TimedLog::LOG_VERBOSE, "-- Setting last gold restock time to %f hours and %i days passed",
baseObject.lastGoldRestockHour, baseObject.lastGoldRestockDay);
ptrFound.getClass().getCreatureStats(ptrFound).setLastRestockTime(MWWorld::TimeStamp::TimeStamp(baseObject.lastGoldRestockHour,
ptrFound.getClass().getCreatureStats(ptrFound).setLastRestockTime(MWWorld::TimeStamp(baseObject.lastGoldRestockHour,
baseObject.lastGoldRestockDay));
}
else