mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r10712) -Fix (r10711): \0 at the end of string constant (glx)
This commit is contained in:
parent
f9411f30c4
commit
51b26f96d2
@ -1276,6 +1276,6 @@ const char *GetCurrentLocale(const char *)
|
||||
return NULL;
|
||||
}
|
||||
/* Format it as 'en_us'. */
|
||||
sprintf(retbuf, "%c%c_%c%c\0", lang[0], lang[1], country[0], country[1]);
|
||||
sprintf(retbuf, "%c%c_%c%c", lang[0], lang[1], country[0], country[1]);
|
||||
return retbuf;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user