aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/journal.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-07-26 21:51:18 -0400
committerPaul Gilbert2015-07-26 21:51:18 -0400
commitbcfe38c24f032715e732422069f25ae5ef1f2a81 (patch)
tree3929434d5d5dc121c7224240fe0370c923f171d4 /engines/sherlock/journal.h
parent6f121be1c26adb406e204c1644cf1f5c8b3960e8 (diff)
downloadscummvm-rg350-bcfe38c24f032715e732422069f25ae5ef1f2a81.tar.gz
scummvm-rg350-bcfe38c24f032715e732422069f25ae5ef1f2a81.tar.bz2
scummvm-rg350-bcfe38c24f032715e732422069f25ae5ef1f2a81.zip
SHERLOCK: RT: Move Journal record method back to Journal class
Diffstat (limited to 'engines/sherlock/journal.h')
-rw-r--r--engines/sherlock/journal.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sherlock/journal.h b/engines/sherlock/journal.h
index d2baae11a9..ac23fc50f5 100644
--- a/engines/sherlock/journal.h
+++ b/engines/sherlock/journal.h
@@ -79,6 +79,12 @@ public:
bool drawJournal(int direction, int howFar);
/**
+ * Records statements that are said, in the order which they are said. The player
+ * can then read the journal to review them
+ */
+ void record(int converseNum, int statementNum, bool replyOnly = false);
+
+ /**
* Synchronize the data for a savegame
*/
void synchronize(Serializer &s);
@@ -89,12 +95,6 @@ public:
virtual void drawFrame() = 0;
/**
- * Records statements that are said, in the order which they are said. The player
- * can then read the journal to review them
- */
- virtual void record(int converseNum, int statementNum, bool replyOnly = false) {}
-
- /**
* Reset viewing position to the start of the journal
*/
virtual void resetPosition() {}