aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/game/savepoint.h
diff options
context:
space:
mode:
authorJordi Vilalta Prat2010-10-19 22:34:26 +0000
committerJordi Vilalta Prat2010-10-19 22:34:26 +0000
commit59c054938a7fd2036badbecfbb3b72ad55b0e820 (patch)
tree3fbc8ec383c10ba88ca88b44c875e479386e7cd4 /engines/lastexpress/game/savepoint.h
parente4029f6f0e5aa9dc679ce875fb7625c564c69144 (diff)
downloadscummvm-rg350-59c054938a7fd2036badbecfbb3b72ad55b0e820.tar.gz
scummvm-rg350-59c054938a7fd2036badbecfbb3b72ad55b0e820.tar.bz2
scummvm-rg350-59c054938a7fd2036badbecfbb3b72ad55b0e820.zip
LASTEXPRESS: Fix some space formatting.
svn-id: r53629
Diffstat (limited to 'engines/lastexpress/game/savepoint.h')
-rw-r--r--engines/lastexpress/game/savepoint.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lastexpress/game/savepoint.h b/engines/lastexpress/game/savepoint.h
index da1c9b8ed1..83fe2a6517 100644
--- a/engines/lastexpress/game/savepoint.h
+++ b/engines/lastexpress/game/savepoint.h
@@ -106,7 +106,7 @@ public:
// Savepoints
void push(EntityIndex entity2, EntityIndex entity1, ActionIndex action, uint32 param = 0);
- void push(EntityIndex entity2, EntityIndex entity1, ActionIndex action, const char* param);
+ void push(EntityIndex entity2, EntityIndex entity1, ActionIndex action, const char *param);
void pushAll(EntityIndex entity, ActionIndex action, uint32 param = 0);
void process();
void reset();
@@ -115,7 +115,7 @@ public:
void addData(EntityIndex entity, ActionIndex action, uint32 param);
// Callbacks
- void setCallback(EntityIndex index, Entity::Callback* callback);
+ void setCallback(EntityIndex index, Entity::Callback *callback);
Callback *getCallback(EntityIndex entity) const;
void call(EntityIndex entity2, EntityIndex entity1, ActionIndex action, uint32 param = 0) const;
void call(EntityIndex entity2, EntityIndex entity1, ActionIndex action, const char *param) const;
@@ -138,7 +138,7 @@ private:
Common::List<SavePoint> _savepoints; ///< could be a queue, but we need to be able to iterate on the items
Common::Array<SavePointData> _data;
- Callback* _callbacks[40];
+ Callback *_callbacks[40];
SavePoint pop();
bool updateEntityFromData(const SavePoint &point);