summaryrefslogtreecommitdiff
path: root/src/gui/theme.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-07-16 18:18:22 +0300
committerAndrei Karas <akaras@inbox.ru>2012-07-16 18:18:22 +0300
commit07e401fb2335d2372a93f37317f144449f7e872b (patch)
treebe531ab11e3f57705d1167f1f8d693906208b87a /src/gui/theme.cpp
parent7cd117790755de302be9f750b95b5bd18a5636bd (diff)
downloadManaVerse-07e401fb2335d2372a93f37317f144449f7e872b.tar.gz
ManaVerse-07e401fb2335d2372a93f37317f144449f7e872b.tar.bz2
ManaVerse-07e401fb2335d2372a93f37317f144449f7e872b.tar.xz
ManaVerse-07e401fb2335d2372a93f37317f144449f7e872b.zip
Add new dye type A.
Same as type S for colors + alpha channel. Example: equipment/feet/boots.png|A:#3c3c3cff,40332d40,4d4d4dff,5e4a3d40 here colors in format RRGGBBAA.
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 e01799ea7..108d736cd 100644
--- a/src/gui/theme.cpp
+++ b/src/gui/theme.cpp
@@ -851,7 +851,7 @@ void Theme::loadColors(std::string file)
continue;
mProgressColors[type] = new DyePalette(XML::getProperty(node,
- "color", ""));
+ "color", ""), 6);
}
}
}