aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tucker/graphics.h')
-rw-r--r--engines/tucker/graphics.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/engines/tucker/graphics.h b/engines/tucker/graphics.h
index 3e2745186c..3e48179a30 100644
--- a/engines/tucker/graphics.h
+++ b/engines/tucker/graphics.h
@@ -34,16 +34,14 @@ enum CharsetType {
};
struct Charset {
- int charW;
- int charH;
- int xCount;
- int yCount;
+ int _charW;
+ int _charH;
+ int _xCount;
+ int _yCount;
};
class Graphics {
public:
-
-
static int encodeRLE(const uint8 *src, uint8 *dst, int w, int h);
static int encodeRAW(const uint8 *src, uint8 *dst, int w, int h);