1
0
Fork 0

(svn r7515) -Codechange [newgrf]: Ignore ascii code 0x0A in text. Newline is 0x0D.

release/0.5
Darkvater 2006-12-20 17:03:14 +00:00
parent 8bf9f5f7fd
commit 083ceabe16
1 changed files with 2 additions and 1 deletions

View File

@ -179,7 +179,8 @@ char *TranslateTTDPatchCodes(const char *str)
d += Utf8Encode(d, SCC_SETX);
*d++ = *str++;
break;
case 0x0D: *d++ = 10; break;
case 0x0A: break;
case 0x0D: *d++ = 0x0A; break;
case 0x0E: d += Utf8Encode(d, SCC_TINYFONT); break;
case 0x0F: d += Utf8Encode(d, SCC_BIGFONT); break;
case 0x1F: