1
0
Fork 0

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

release/1.4
rubidium 2013-06-27 20:07:09 +00:00
parent 19eca468fc
commit 868001a1e0
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}