1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 08:59:09 +00:00

(svn r10851) -Feature [OSX]: OpenTTD will now pick the same language as finder is set to if no config file is found (ln-)

This commit is contained in:
bjarni
2007-08-11 15:52:34 +00:00
parent 04824abac6
commit 1a5a748973
2 changed files with 16 additions and 2 deletions

View File

@@ -1237,7 +1237,8 @@ bool ReadLanguagePack(int lang_index)
}
/* Win32 implementation in win32.cpp. */
#ifndef WIN32
/* OS X implementation in os/macosx/macos.mm. */
#if !(defined(WIN32) || defined(__APPLE__))
/** Determine the current charset based on the environment
* First check some default values, after this one we passed ourselves
* and if none exist return the value for $LANG
@@ -1261,7 +1262,7 @@ const char *GetCurrentLocale(const char *param)
return getenv("LANG");
}
#endif /* ifndef WIN32 */
#endif /* !(defined(WIN32) || defined(__APPLE__)) */
static int CDECL LanguageCompareFunc(const void *a, const void *b)
{