diff options
Diffstat (limited to 'plugins/Db3x_mmap/src/dbtool')
-rw-r--r-- | plugins/Db3x_mmap/src/dbtool/eventchain.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Db3x_mmap/src/dbtool/eventchain.cpp b/plugins/Db3x_mmap/src/dbtool/eventchain.cpp index fd988fe2cc..3e747a65b4 100644 --- a/plugins/Db3x_mmap/src/dbtool/eventchain.cpp +++ b/plugins/Db3x_mmap/src/dbtool/eventchain.cpp @@ -82,9 +82,10 @@ void CDb3Mmap::WriteOfsNextToPrevious(DWORD ofsPrev, DBContact *dbc, DWORD ofsNe void CDb3Mmap::FinishUp(DWORD ofsLast, DBContact *dbc)
{
WriteOfsNextToPrevious(ofsLast, dbc, 0);
- if (eventCount != dbc->eventCount)
+ if (eventCount != dbc->eventCount && dbc->ofsFirstEvent != 0 || dbc->ofsLastEvent != 0 || dbc->ofsFirstUnread != 0) {
cb->pfnAddLogMessage(STATUS_WARNING, TranslateT("Event count marked wrongly: correcting"));
- dbc->eventCount = eventCount;
+ dbc->eventCount = eventCount;
+ }
dbc->ofsLastEvent = ofsLast;
if (cb->bMarkRead) {
dbc->ofsFirstUnread = 0;
|