aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/scene.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/scene.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/scene.h')
-rw-r--r--engines/teenagent/scene.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/teenagent/scene.h b/engines/teenagent/scene.h
index 081b01c6fe..6f8430968a 100644
--- a/engines/teenagent/scene.h
+++ b/engines/teenagent/scene.h
@@ -95,9 +95,9 @@ public:
Scene();
- void init(TeenAgentEngine *engine, OSystem * system);
+ void init(TeenAgentEngine *engine, OSystem *system);
void init(int id, const Common::Point &pos);
- bool render(OSystem * system);
+ bool render(OSystem *system);
int getId() const { return _id; }
void warp(const Common::Point & point, byte orientation = 0);
@@ -113,13 +113,13 @@ public:
void clear();
- byte * getOns(int id);
- byte * getLans(int id);
+ byte *getOns(int id);
+ byte *getLans(int id);
bool eventRunning() const { return !current_event.empty(); }
Walkbox *getWalkbox(byte id) { return walkbox[id]; }
- Object * getObject(int id, int scene_id = 0);
+ Object *getObject(int id, int scene_id = 0);
private:
void loadOns();
@@ -129,7 +129,7 @@ private:
void playActorAnimation(uint id, bool loop);
byte palette[768];
- void setPalette(OSystem *system, const byte * palette, unsigned mul = 1);
+ void setPalette(OSystem *system, const byte *palette, unsigned mul = 1);
static Common::Point messagePosition(const Common::String &str, const Common::Point & position);
bool processEventQueue();
@@ -139,7 +139,7 @@ private:
}
TeenAgentEngine *_engine;
- OSystem * _system;
+ OSystem *_system;
int _id;
Graphics::Surface background;
@@ -154,7 +154,7 @@ private:
uint8 orientation;
byte walkboxes;
- Walkbox * walkbox[255];
+ Walkbox *walkbox[255];
Common::String message;
Common::Point message_pos;