summaryrefslogtreecommitdiff
path: root/src/resources/image.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-18 14:53:26 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:20 +0300
commit6205783e6ac38a17ab6a06ba8d2a480a0d8de98a (patch)
tree2e939ab68a1c96fbf7eda58a24abc92c305bbdb0 /src/resources/image.h
parenta3c0ce64ff095031b7defd51e06749328ca180be (diff)
downloadplus-6205783e6ac38a17ab6a06ba8d2a480a0d8de98a.tar.gz
plus-6205783e6ac38a17ab6a06ba8d2a480a0d8de98a.tar.bz2
plus-6205783e6ac38a17ab6a06ba8d2a480a0d8de98a.tar.xz
plus-6205783e6ac38a17ab6a06ba8d2a480a0d8de98a.zip
remove default parameter from Image constructor.
Diffstat (limited to 'src/resources/image.h')
-rw-r--r--src/resources/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/image.h b/src/resources/image.h
index f10734ba4..e4e41b914 100644
--- a/src/resources/image.h
+++ b/src/resources/image.h
@@ -200,7 +200,7 @@ class Image : public Resource
// -----------------------
/** SDL Constructor */
- Image(SDL_Surface *const image, const bool hasAlphaChannel = false,
+ Image(SDL_Surface *const image, const bool hasAlphaChannel,
uint8_t *const alphaChannel = nullptr);
#ifdef USE_SDL2