mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Fix boolean type
This was SVN commit r14971.
This commit is contained in:
parent
21362de6ac
commit
9b9a96382c
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ void L10n::ReevaluateCurrentLocaleAndReload()
|
|||
else
|
||||
{
|
||||
GetDictionaryLocale(locale, currentLocale);
|
||||
currentLocaleIsOriginalGameLocale = (currentLocale == Locale::getUS()) == true;
|
||||
currentLocaleIsOriginalGameLocale = (currentLocale == Locale::getUS()) == TRUE;
|
||||
useLongStrings = false;
|
||||
}
|
||||
LoadDictionaryForCurrentLocale();
|
||||
|
|
|
|||
Loading…
Reference in a new issue