1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-29 09:15:35 +00:00

Fix date time in journal entries being off by one day (Fixes #1668)

This commit is contained in:
scrawl 2014-07-21 01:17:01 +02:00
parent 5629803a08
commit 10d4da7994

View file

@ -259,7 +259,7 @@ struct JournalViewModelImpl : JournalViewModel
os
<< itr->mDayOfMonth << ' '
<< MWBase::Environment::get().getWorld()->getMonthName (itr->mMonth)
<< " (" << dayStr << " " << (itr->mDay + 1) << ')';
<< " (" << dayStr << " " << (itr->mDay) << ')';
timestamp_buffer = os.str ();
}