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/subimage.cpp | |
parent | 7f60553aa81fe9e1889b1af12e0fe7db8d68f074 (diff) | |
download | plus-d671eb90eb2ba431ba15123309368520608e5ba3.tar.gz plus-d671eb90eb2ba431ba15123309368520608e5ba3.tar.bz2 plus-d671eb90eb2ba431ba15123309368520608e5ba3.tar.xz plus-d671eb90eb2ba431ba15123309368520608e5ba3.zip |
Fix align in constructors.
Diffstat (limited to 'src/resources/subimage.cpp')
-rw-r--r-- | src/resources/subimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/subimage.cpp b/src/resources/subimage.cpp index fd35fb7bb..717858ae0 100644 --- a/src/resources/subimage.cpp +++ b/src/resources/subimage.cpp @@ -136,7 +136,7 @@ SubImage::SubImage(Image *const parent, SDL_Surface *const image, #ifdef USE_OPENGL SubImage::SubImage(Image *const parent, const GLuint image, const int x, const int y, const int width, const int height, - const int texWidth, const int texHeight): + const int texWidth, const int texHeight) : Image(image, width, height, texWidth, texHeight), mInternalBounds(), mParent(parent) |