aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/conversationlinelist.h
diff options
context:
space:
mode:
authorĽubomír Remák2018-07-21 15:17:17 +0200
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit6c4ae7f19883dd7fa6de4fc3234351f1e33ba7a3 (patch)
tree76ac2bd31d15cb278162d803a1403388abafc6a5 /engines/mutationofjb/conversationlinelist.h
parent215b87ccca4c4888cd70c990271fe62177d054f0 (diff)
downloadscummvm-rg350-6c4ae7f19883dd7fa6de4fc3234351f1e33ba7a3.tar.gz
scummvm-rg350-6c4ae7f19883dd7fa6de4fc3234351f1e33ba7a3.tar.bz2
scummvm-rg350-6c4ae7f19883dd7fa6de4fc3234351f1e33ba7a3.zip
MUTATIONOFJB: Implement multiple speeches in one response line.
Diffstat (limited to 'engines/mutationofjb/conversationlinelist.h')
-rw-r--r--engines/mutationofjb/conversationlinelist.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mutationofjb/conversationlinelist.h b/engines/mutationofjb/conversationlinelist.h
index 9ec446e4b4..0f8346f69a 100644
--- a/engines/mutationofjb/conversationlinelist.h
+++ b/engines/mutationofjb/conversationlinelist.h
@@ -39,8 +39,9 @@ public:
bool isSecondSpeaker() const { return _text.firstChar() == '`'; }
};
+ typedef Common::Array<Speech> Speeches;
struct Line {
- Common::Array<Speech> _speeches;
+ Speeches _speeches;
Common::String _extra;
};