-removed an unnecessary translation step in card text rendering (see issue 258)
This commit is contained in:
wagic.the.homebrew@gmail.com
2010-01-31 11:50:25 +00:00
parent 25e9e05a43
commit da7591288d

View File

@@ -63,7 +63,7 @@ const vector<string>& CardPrimitive::formattedText()
{
if (ftdText.empty())
{
std::string s = _(text);
std::string s = text;
std::string::size_type found = s.find_first_of("{}");
while (found!=string::npos)
{