aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/objects.h
diff options
context:
space:
mode:
authorMax Horn2009-03-07 19:24:31 +0000
committerMax Horn2009-03-07 19:24:31 +0000
commitf9ecd95d6960341e696ab1aa8262e48135908d51 (patch)
tree4ab853891a0ca47c4d46a2691546e27a7e05b7f9 /engines/parallaction/objects.h
parent2dfae035ac7351b1161d0466405c1d44d69f701a (diff)
downloadscummvm-rg350-f9ecd95d6960341e696ab1aa8262e48135908d51.tar.gz
scummvm-rg350-f9ecd95d6960341e696ab1aa8262e48135908d51.tar.bz2
scummvm-rg350-f9ecd95d6960341e696ab1aa8262e48135908d51.zip
Whitespace cleanup: Convert space followed by tab to just tab
svn-id: r39203
Diffstat (limited to 'engines/parallaction/objects.h')
-rw-r--r--engines/parallaction/objects.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/parallaction/objects.h b/engines/parallaction/objects.h
index 60c854661e..37ebc54659 100644
--- a/engines/parallaction/objects.h
+++ b/engines/parallaction/objects.h
@@ -346,10 +346,10 @@ public:
// getters/setters
- virtual int16 getX() { return _left; }
+ virtual int16 getX() { return _left; }
virtual void setX(int16 value) { _left = value; }
- virtual int16 getY() { return _top; }
+ virtual int16 getY() { return _top; }
virtual void setY(int16 value) { _top = value; }
};
@@ -533,16 +533,16 @@ public:
void forceXYZF(int16 x, int16 y, int16 z, int16 f);
// getters/setters used by scripts
- int16 getX() { return _left; }
+ int16 getX() { return _left; }
void setX(int16 value) { _left = value; }
- int16 getY() { return _top; }
+ int16 getY() { return _top; }
void setY(int16 value) { _top = value; }
- int16 getZ() { return _z; }
+ int16 getZ() { return _z; }
void setZ(int16 value) { _z = value; }
- int16 getF() { return _frame; }
+ int16 getF() { return _frame; }
void setF(int16 value);
void getFoot(Common::Point &foot);