aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/animation.h
diff options
context:
space:
mode:
authorVladimir Menshakov2009-09-15 07:41:05 +0000
committerVladimir Menshakov2009-09-15 07:41:05 +0000
commit7cbbc0ad25dde67d69dbb2f3e8da1c8a9ec4be1a (patch)
tree5c44cb4daae647089f7f075237f50af8c7110ea8 /engines/teenagent/animation.h
parent5605e8b74d47b66ab4ae85113176de4414f2dcf0 (diff)
downloadscummvm-rg350-7cbbc0ad25dde67d69dbb2f3e8da1c8a9ec4be1a.tar.gz
scummvm-rg350-7cbbc0ad25dde67d69dbb2f3e8da1c8a9ec4be1a.tar.bz2
scummvm-rg350-7cbbc0ad25dde67d69dbb2f3e8da1c8a9ec4be1a.zip
adapted code to comply code formatting conventions.
svn-id: r44098
Diffstat (limited to 'engines/teenagent/animation.h')
-rw-r--r--engines/teenagent/animation.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/teenagent/animation.h b/engines/teenagent/animation.h
index a5d7e25c7c..86839bd79b 100644
--- a/engines/teenagent/animation.h
+++ b/engines/teenagent/animation.h
@@ -38,11 +38,11 @@ public:
enum Type {TypeLan, TypeVaria, TypeInventory};
Animation();
- void load(Common::SeekableReadStream * s, Type type = TypeLan);
+ void load(Common::SeekableReadStream *s, Type type = TypeLan);
void free();
- Surface * firstFrame();
- Surface * currentFrame(int dt = 1);
+ Surface *firstFrame();
+ Surface *currentFrame(int dt = 1);
uint16 currentIndex() const { return index; }
~Animation();
@@ -53,11 +53,11 @@ public:
//uint16 height() const { return frames? frames[0].h: 0; }
protected:
- byte * data;
+ byte *data;
uint16 data_size;
uint16 frames_count;
- Surface * frames;
+ Surface *frames;
uint16 index;
};