aboutsummaryrefslogtreecommitdiff
path: root/engines/gnap/gamesys.h
diff options
context:
space:
mode:
authorStrangerke2016-03-14 07:21:37 +0100
committerEugene Sandulenko2016-05-10 09:54:21 +0200
commitda2cb981d2d5a71fc9db04404569bfcc92fbfcf3 (patch)
treeb87a915c78424061c4ece949e69d3a61c9a8ad72 /engines/gnap/gamesys.h
parentccadc0ab208c9de0c1b56a83c58b81e5002beb6a (diff)
downloadscummvm-rg350-da2cb981d2d5a71fc9db04404569bfcc92fbfcf3.tar.gz
scummvm-rg350-da2cb981d2d5a71fc9db04404569bfcc92fbfcf3.tar.bz2
scummvm-rg350-da2cb981d2d5a71fc9db04404569bfcc92fbfcf3.zip
GNAP: Some renaming, remove useless variables in GfxItem
Diffstat (limited to 'engines/gnap/gamesys.h')
-rw-r--r--engines/gnap/gamesys.h29
1 files changed, 13 insertions, 16 deletions
diff --git a/engines/gnap/gamesys.h b/engines/gnap/gamesys.h
index 76b2afe464..cb6de0033b 100644
--- a/engines/gnap/gamesys.h
+++ b/engines/gnap/gamesys.h
@@ -72,25 +72,22 @@ struct RemoveSequenceItem {
struct RemoveSpriteDrawItem {
int _id;
- Graphics::Surface *surface;
+ Graphics::Surface *_surface;
};
struct GfxItem {
- int sequenceId;
- int id;
- int flags;
- SequenceAnimation *animation;
- int soundValue;
- int field_18;
- int field_1C;
- int currFrameNum;
- int delayTicks;
- bool updFlag;
- int updRectsCount;
- Graphics::Surface *surface;
- Common::Rect updRects[kMaxUpdRects];
- SequenceFrame prevFrame;
- SequenceFrame currFrame;
+ int _sequenceId;
+ int _id;
+ int _flags;
+ SequenceAnimation *_animation;
+ int _currFrameNum;
+ int _delayTicks;
+ bool _updFlag;
+ int _updRectsCount;
+ Graphics::Surface *_surface;
+ Common::Rect _updRects[kMaxUpdRects];
+ SequenceFrame _prevFrame;
+ SequenceFrame _currFrame;
void testUpdRect(const Common::Rect &updRect);
};