(svn r25489) -Fix (r25488): we want to have the begin, not the end of the decoded text as string to pass along

pull/155/head
rubidium 11 years ago
parent 9d41bcd010
commit 4604f20d57

@ -202,5 +202,6 @@ const char *Text::GetDecodedText()
static char buf[1024];
::SetDParamStr(0, encoded_text);
return ::GetString(buf, STR_JUST_RAW_STRING, lastof(buf));
::GetString(buf, STR_JUST_RAW_STRING, lastof(buf));
return buf;
}

Loading…
Cancel
Save