aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_journal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_journal.cpp')
-rw-r--r--engines/sherlock/scalpel/scalpel_journal.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/engines/sherlock/scalpel/scalpel_journal.cpp b/engines/sherlock/scalpel/scalpel_journal.cpp
index e3421cdf99..8e356c0f65 100644
--- a/engines/sherlock/scalpel/scalpel_journal.cpp
+++ b/engines/sherlock/scalpel/scalpel_journal.cpp
@@ -662,26 +662,6 @@ void ScalpelJournal::resetPosition() {
_page = 1;
}
-void ScalpelJournal::synchronize(Serializer &s) {
- s.syncAsSint16LE(_index);
- s.syncAsSint16LE(_sub);
- s.syncAsSint16LE(_page);
- s.syncAsSint16LE(_maxPage);
-
- int journalCount = _journal.size();
- s.syncAsUint16LE(journalCount);
- if (s.isLoading())
- _journal.resize(journalCount);
-
- for (uint idx = 0; idx < _journal.size(); ++idx) {
- JournalEntry &je = _journal[idx];
-
- s.syncAsSint16LE(je._converseNum);
- s.syncAsByte(je._replyOnly);
- s.syncAsSint16LE(je._statementNum);
- }
-}
-
} // End of namespace Scalpel
} // End of namespace Sherlock