aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/fixed_text.h
diff options
context:
space:
mode:
authorMartin Kiewitz2016-02-11 22:38:56 +0100
committerMartin Kiewitz2016-02-11 22:38:56 +0100
commit9255fd37441dc27b28d3cc0fb61a101b82b21c68 (patch)
tree6899c7b0551fe28f5c3987892ee309a92532f6f2 /engines/sherlock/fixed_text.h
parentdbea55b36b48838879ebd5b5dc6a94d7aa7f0f2e (diff)
downloadscummvm-rg350-9255fd37441dc27b28d3cc0fb61a101b82b21c68.tar.gz
scummvm-rg350-9255fd37441dc27b28d3cc0fb61a101b82b21c68.tar.bz2
scummvm-rg350-9255fd37441dc27b28d3cc0fb61a101b82b21c68.zip
SHERLOCK: SS: Make "Picked up" text multilingual
Bug #7002 should be fully solved now
Diffstat (limited to 'engines/sherlock/fixed_text.h')
-rw-r--r--engines/sherlock/fixed_text.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/sherlock/fixed_text.h b/engines/sherlock/fixed_text.h
index aa6519d797..e4b09fdc4c 100644
--- a/engines/sherlock/fixed_text.h
+++ b/engines/sherlock/fixed_text.h
@@ -67,7 +67,7 @@ enum FixedJournalTextId {
kFixedJournalText_ThenTheInspectorAsked,
kFixedJournalText_ThenTheInspectorSaid,
kFixedJournalText_ThenPersonAsked,
- kFixedJournalText_ThenPersonSaid
+ kFixedJournalText_ThenPersonSaid,
};
class SherlockEngine;
@@ -96,8 +96,14 @@ public:
*/
const char *getJournalText(int fixedJournalTextId);
+ /**
+ * Gets object "Picked Up" text
+ */
+ const char *getObjectPickedUpText();
+
private:
const char *const *_fixedJournalTextArray;
+ const char *_fixedObjectPickedUpText;
};
} // End of namespace Sherlock