Fixed i18n bug with scripting messages

pull/110/head
Vincent Giangiulio 2011-01-10 22:39:27 +00:00
parent ccb163b5ee
commit 58c4815768
1 changed files with 1 additions and 1 deletions

View File

@ -3883,7 +3883,7 @@ void CelestiaCore::renderOverlay()
glColor4f(textColor.red(), textColor.green(), textColor.blue(), alpha);
glTranslatef((float) x, (float) y, 0.0f);
overlay->beginText();
*overlay << _(messageText.c_str());
*overlay << messageText.c_str();
overlay->endText();
glPopMatrix();
overlay->setFont(font);