diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 23:03:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 23:03:27 +0300 |
commit | 49fff1aed195d44871caeeff063b1b8c76628e02 (patch) | |
tree | 5a2d8a617c089a1e8b6c50daa05ee32cb7c5ec90 /src/gui/theme.cpp | |
parent | 9c9a1a4a4e2af42246f56aa73a5212ece9af9493 (diff) | |
download | manaverse-49fff1aed195d44871caeeff063b1b8c76628e02.tar.gz manaverse-49fff1aed195d44871caeeff063b1b8c76628e02.tar.bz2 manaverse-49fff1aed195d44871caeeff063b1b8c76628e02.tar.xz manaverse-49fff1aed195d44871caeeff063b1b8c76628e02.zip |
Remove default parameter from color.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index cbc0d654c..6d9c572ba 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -172,7 +172,7 @@ Color Theme::getProgressColor(const ProgressColorIdT type, } } - return Color(color[0], color[1], color[2]); + return Color(color[0], color[1], color[2], 255U); } Skin *Theme::load(const std::string &filename, |