diff options
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index 816fdcaa5..3f1064d1a 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -1046,7 +1046,7 @@ static Palette::GradientType readColorGradient(const std::string &grad) static int readProgressType(const std::string &type) { - static const std::string colors[] = + static const std::string colors[Theme::THEME_PROG_END] = { "HP", "MP", @@ -1057,7 +1057,8 @@ static int readProgressType(const std::string &type) "JOB", "UPDATE", "MONEY", - "ARROWS" + "ARROWS", + "STATUS" }; if (type.empty()) |