From da7591288d4001c0c6776d492197817de0cb1325 Mon Sep 17 00:00:00 2001 From: "wagic.the.homebrew@gmail.com" Date: Sun, 31 Jan 2010 11:50:25 +0000 Subject: [PATCH] Erwan -removed an unnecessary translation step in card text rendering (see issue 258) --- projects/mtg/src/CardPrimitive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/CardPrimitive.cpp b/projects/mtg/src/CardPrimitive.cpp index b5794925b..44e555ac1 100644 --- a/projects/mtg/src/CardPrimitive.cpp +++ b/projects/mtg/src/CardPrimitive.cpp @@ -63,7 +63,7 @@ const vector& 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) {