diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-25 13:27:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-25 13:27:25 +0300 |
commit | d671eb90eb2ba431ba15123309368520608e5ba3 (patch) | |
tree | c2658830de37e50d7c4b66a63e2164c666c2bf25 /src/resources/map/tileset.h | |
parent | 7f60553aa81fe9e1889b1af12e0fe7db8d68f074 (diff) | |
download | mv-d671eb90eb2ba431ba15123309368520608e5ba3.tar.gz mv-d671eb90eb2ba431ba15123309368520608e5ba3.tar.bz2 mv-d671eb90eb2ba431ba15123309368520608e5ba3.tar.xz mv-d671eb90eb2ba431ba15123309368520608e5ba3.zip |
Fix align in constructors.
Diffstat (limited to 'src/resources/map/tileset.h')
-rw-r--r-- | src/resources/map/tileset.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/resources/map/tileset.h b/src/resources/map/tileset.h index 312896c62..fa1291ba2 100644 --- a/src/resources/map/tileset.h +++ b/src/resources/map/tileset.h @@ -36,8 +36,12 @@ class Tileset final : public ImageSet /** * Constructor. */ - Tileset(Image *const img, const int w, const int h, const int firstGid, - const int margin, const int spacing): + Tileset(Image *const img, + const int w, + const int h, + const int firstGid, + const int margin, + const int spacing) : ImageSet(img, w, h, margin, spacing), mFirstGid(firstGid), mProperties() |