JANITORIAL: Fix indentation

This commit is contained in:
Eugene Sandulenko 2020-05-03 19:10:04 +02:00
parent 322e014f39
commit f48ab6afb8
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ const LanguageDescription g_languages[] = {
{ "se", "sv_SE", "Swedish", SE_SWE }, { "se", "sv_SE", "Swedish", SE_SWE },
{ "tr", "tr_TR", "Turkish", TR_TUR }, { "tr", "tr_TR", "Turkish", TR_TUR },
{ "uk", "uk_UA", "Ukrainian", UA_UKR }, { "uk", "uk_UA", "Ukrainian", UA_UKR },
{ "sr", "sr_SP", "Serbian", SR_SER }, { "sr", "sr_SP", "Serbian", SR_SER },
{ nullptr, nullptr, nullptr, UNK_LANG } { nullptr, nullptr, nullptr, UNK_LANG }
}; };

View File

@ -64,7 +64,7 @@ enum Language {
SE_SWE, SE_SWE,
TR_TUR, TR_TUR,
UA_UKR, UA_UKR,
SR_SER, SR_SER,
UNK_LANG = -1 // Use default language (i.e. none specified) UNK_LANG = -1 // Use default language (i.e. none specified)
}; };