Changeset - r17394:76c1d70108d8
[Not reviewed]
master
0 1 0
rubidium - 13 years ago 2011-02-27 06:36:14
rubidium@openttd.org
(svn r22153) -Fix [FS#4536]: The Greek translation didn't work as it breached the 200.000 bytes "limit" for loading language files
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/strings.cpp
Show inline comments
 
@@ -1457,7 +1457,7 @@ bool ReadLanguagePack(const LanguageMeta
 
{
 
	/* Current language pack */
 
	size_t len;
 
	LanguagePack *lang_pack = (LanguagePack *)ReadFileToMem(lang->file, &len, 200000);
 
	LanguagePack *lang_pack = (LanguagePack *)ReadFileToMem(lang->file, &len, 1U << 20);
 
	if (lang_pack == NULL) return false;
 

	
 
	/* End of read data (+ terminating zero added in ReadFileToMem()) */
0 comments (0 inline, 0 general)