summaryrefslogtreecommitdiff
path: root/src/gui/theme.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-23 23:03:27 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-23 23:03:27 +0300
commit49fff1aed195d44871caeeff063b1b8c76628e02 (patch)
tree5a2d8a617c089a1e8b6c50daa05ee32cb7c5ec90 /src/gui/theme.cpp
parent9c9a1a4a4e2af42246f56aa73a5212ece9af9493 (diff)
downloadManaVerse-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.cpp2
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,