aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2017-05-02 22:06:59 +0200
committerEugene Sandulenko2017-05-02 22:06:59 +0200
commitbfd2b487eba0a51a9e86b79b567bdd34b65008df (patch)
tree2eb19856d06db597aa6850fc6ee0e060c7e16e07
parent98f0006ad91558312a9a52fec152b71df0643a05 (diff)
downloadscummvm-rg350-bfd2b487eba0a51a9e86b79b567bdd34b65008df.tar.gz
scummvm-rg350-bfd2b487eba0a51a9e86b79b567bdd34b65008df.tar.bz2
scummvm-rg350-bfd2b487eba0a51a9e86b79b567bdd34b65008df.zip
DIRECTOR: Fix code formatting
-rw-r--r--engines/director/stxt.cpp2
-rw-r--r--engines/director/stxt.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/engines/director/stxt.cpp b/engines/director/stxt.cpp
index 398b9a6513..5d5515b4c6 100644
--- a/engines/director/stxt.cpp
+++ b/engines/director/stxt.cpp
@@ -24,7 +24,7 @@
namespace Director {
-Stxt::Stxt (Common::SeekableSubReadStreamEndian &textStream) {
+Stxt::Stxt(Common::SeekableSubReadStreamEndian &textStream) {
// TODO: Side effects on textStream make this a little hard to understand in context?
uint32 unk1 = textStream.readUint32();
uint32 strLen = textStream.readUint32();
diff --git a/engines/director/stxt.h b/engines/director/stxt.h
index 7ac1ca51cd..116a17ab68 100644
--- a/engines/director/stxt.h
+++ b/engines/director/stxt.h
@@ -29,7 +29,8 @@ namespace Director {
class Stxt {
public:
- Stxt (Common::SeekableSubReadStreamEndian &textStream);
+ Stxt(Common::SeekableSubReadStreamEndian &textStream);
+
public:
Common::String _ftext;
uint32 _fontId;