Russian and Portuguese synopsis support

This commit is contained in:
wiidev 2021-08-01 18:00:14 +01:00
parent 0bed750923
commit d79ce271aa
1 changed files with 6 additions and 0 deletions

View File

@ -1573,6 +1573,12 @@ static inline const char * GetLangCode(const char * langpath)
else if(strcasestr(langpath, "korean"))
return "KO";
else if(strcasestr(langpath, "portuguese_pt"))
return "PT";
else if(strcasestr(langpath, "russian"))
return "RU";
return "EN";
}