Fixing some evil behaviour
svn-id: r15907
This commit is contained in:
parent
fe43ebf73b
commit
6bcb1ce7d9
1 changed files with 3 additions and 5 deletions
|
@ -147,6 +147,7 @@ static ResString string_map_table_v5[] = {
|
|||
|
||||
|
||||
const Common::String ScummDialog::queryResString(int stringno) {
|
||||
byte buf[256];
|
||||
byte *result;
|
||||
|
||||
if (stringno == 0)
|
||||
|
@ -163,11 +164,8 @@ const Common::String ScummDialog::queryResString(int stringno) {
|
|||
return string_map_table_v5[stringno - 1].string;
|
||||
|
||||
if (result && *result == '/') {
|
||||
byte tmp[256];
|
||||
_vm->translateText(result, tmp);
|
||||
|
||||
// FIXME: AARGH! We shouldn't just strcpy into the data we got from getStringAddress
|
||||
strcpy((char *)result, (char *)tmp);
|
||||
_vm->translateText(result, buf);
|
||||
result = buf;
|
||||
}
|
||||
|
||||
if (!result || *result == '\0') { // Gracelessly degrade to english :)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue