diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-22 02:10:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-22 02:10:59 +0300 |
commit | 1ff17739796e327e30a78b544be9865420d4c807 (patch) | |
tree | 929dd877616f25ca74943f4225e51cc01aecf928 /src/resources/imageset.h | |
parent | 5133814218de74d57c7febadf61b3ab05216dc25 (diff) | |
download | manaplus-1ff17739796e327e30a78b544be9865420d4c807.tar.gz manaplus-1ff17739796e327e30a78b544be9865420d4c807.tar.bz2 manaplus-1ff17739796e327e30a78b544be9865420d4c807.tar.xz manaplus-1ff17739796e327e30a78b544be9865420d4c807.zip |
Remove default parameters from imageset.
Diffstat (limited to 'src/resources/imageset.h')
-rw-r--r-- | src/resources/imageset.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/resources/imageset.h b/src/resources/imageset.h index 78907fbba..e31317731 100644 --- a/src/resources/imageset.h +++ b/src/resources/imageset.h @@ -40,8 +40,11 @@ class ImageSet notfinal : public Resource /** * Cuts the passed image in a grid of sub images. */ - ImageSet(Image *const img, const int w, const int h, - const int margin = 0, const int spacing = 0); + ImageSet(Image *const img, + const int w, + const int h, + const int margin, + const int spacing); A_DELETE_COPY(ImageSet) |