aboutsummaryrefslogtreecommitdiff
path: root/scumm/sprite_he.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-02-26 11:22:00 +0000
committerEugene Sandulenko2005-02-26 11:22:00 +0000
commit3abfcbc579474c5a0886e9ad50d459ac2947c9a6 (patch)
treece4ea0a7b32029988bca5f6b6ef772e0777c4dac /scumm/sprite_he.h
parent885d58484270ccc75038b4774b59c4d6577291b8 (diff)
downloadscummvm-rg350-3abfcbc579474c5a0886e9ad50d459ac2947c9a6.tar.gz
scummvm-rg350-3abfcbc579474c5a0886e9ad50d459ac2947c9a6.tar.bz2
scummvm-rg350-3abfcbc579474c5a0886e9ad50d459ac2947c9a6.zip
Lots of other sprite-related renames as suggested by cyx.
svn-id: r16930
Diffstat (limited to 'scumm/sprite_he.h')
-rw-r--r--scumm/sprite_he.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/scumm/sprite_he.h b/scumm/sprite_he.h
index b8106545d9..a99450f03a 100644
--- a/scumm/sprite_he.h
+++ b/scumm/sprite_he.h
@@ -61,12 +61,12 @@ enum SpriteFlags {
};
enum SpriteGroupFlags {
- kSGF01 = 1 << 0, // kSGFClipBox
- kSGF02 = 1 << 1 // kSGFNeedRedraw
+ kSGFClipBox = 1 << 0,
+ kSGFNeedRedraw = 1 << 1
};
struct SpriteInfo {
- int field_0; // zorder ?
+ int zorder;
int flags;
int res_id;
int res_state;
@@ -104,7 +104,7 @@ struct SpriteInfo {
struct SpriteGroup {
Common::Rect bbox;
- int field_10; // zorderPriority ?
+ int zorderPriority;
int flags;
int tx;
int ty;
@@ -112,10 +112,10 @@ struct SpriteGroup {
int scaling;
int scale_x;
int scale_y;
- int field_30; // scale_x_ratio_mul
- int field_34; // scale_x_ratio_div
- int field_38; // scale_y_ratio_mul
- int field_3C; // scale_y_ratio_div
+ int scale_x_ratio_mul;
+ int scale_x_ratio_div;
+ int scale_y_ratio_mul;
+ int scale_y_ratio_div;
};
int _varNumSpriteGroups;