aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/text/text.h
diff options
context:
space:
mode:
authorFilippos Karapetis2014-12-22 00:54:08 +0200
committerFilippos Karapetis2014-12-22 00:54:08 +0200
commit85644b887944dc4fc261827ae812a4e4684651bb (patch)
tree0d1c389ecf4e437c95ec3cee2703a59ce3e0b600 /engines/zvision/text/text.h
parentb0e6c30ee288130d6b904a6f770044564b0490e6 (diff)
downloadscummvm-rg350-85644b887944dc4fc261827ae812a4e4684651bb.tar.gz
scummvm-rg350-85644b887944dc4fc261827ae812a4e4684651bb.tar.bz2
scummvm-rg350-85644b887944dc4fc261827ae812a4e4684651bb.zip
ZVISION: Prefix some class member variables with an underscore
Diffstat (limited to 'engines/zvision/text/text.h')
-rw-r--r--engines/zvision/text/text.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/engines/zvision/text/text.h b/engines/zvision/text/text.h
index ecec3ccde6..c3c60f6b76 100644
--- a/engines/zvision/text/text.h
+++ b/engines/zvision/text/text.h
@@ -55,21 +55,21 @@ public:
void setFont(StyledTTFont &font);
public:
- Common::String fontname;
- txtJustify justify; // 0 - center, 1-left, 2-right
- int16 size;
- uint8 red; // 0-255
- uint8 green; // 0-255
- uint8 blue; // 0-255
- int8 newline;
- int8 escapement;
- bool italic;
- bool bold;
- bool underline;
- bool strikeout;
- bool skipcolor;
- int32 statebox;
- bool sharp;
+ Common::String _fontname;
+ txtJustify _justify; // 0 - center, 1-left, 2-right
+ int16 _size;
+ uint8 _red; // 0-255
+ uint8 _green; // 0-255
+ uint8 _blue; // 0-255
+ int8 _newline;
+ int8 _escapement;
+ bool _italic;
+ bool _bold;
+ bool _underline;
+ bool _strikeout;
+ bool _skipcolor;
+ int32 _statebox;
+ bool _sharp;
// char image ??
};