aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/conversationlinelist.h
diff options
context:
space:
mode:
authorĽubomír Remák2018-08-04 16:57:41 +0200
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commita25715a29b0587ae6795eef63a575172e2cb971d (patch)
treeb10acdeffd001f507209799498a6e9f90a585e06 /engines/mutationofjb/conversationlinelist.h
parent6ff609c51478c07a00018e57d8149f09d97677e7 (diff)
downloadscummvm-rg350-a25715a29b0587ae6795eef63a575172e2cb971d.tar.gz
scummvm-rg350-a25715a29b0587ae6795eef63a575172e2cb971d.tar.bz2
scummvm-rg350-a25715a29b0587ae6795eef63a575172e2cb971d.zip
MUTATIONOFJB: Fix code formatting issues (with astyle).
Diffstat (limited to 'engines/mutationofjb/conversationlinelist.h')
-rw-r--r--engines/mutationofjb/conversationlinelist.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/engines/mutationofjb/conversationlinelist.h b/engines/mutationofjb/conversationlinelist.h
index 0f8346f69a..4f208adf5c 100644
--- a/engines/mutationofjb/conversationlinelist.h
+++ b/engines/mutationofjb/conversationlinelist.h
@@ -34,9 +34,15 @@ public:
Common::String _text;
Common::String _voiceFile;
- bool isRepeating() const { return _text.firstChar() == '*'; }
- bool isFirstSpeaker() const { return _text.firstChar() == '~'; }
- bool isSecondSpeaker() const { return _text.firstChar() == '`'; }
+ bool isRepeating() const {
+ return _text.firstChar() == '*';
+ }
+ bool isFirstSpeaker() const {
+ return _text.firstChar() == '~';
+ }
+ bool isSecondSpeaker() const {
+ return _text.firstChar() == '`';
+ }
};
typedef Common::Array<Speech> Speeches;