GameDatabase: Add missing flags
This commit is contained in:
parent
7b230dc4c1
commit
70a4b5c9f2
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 241 B |
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 6" width="900" height="600"><rect fill="#fff" width="9" height="3"/><rect fill="#d52b1e" y="3" width="9" height="3"/><rect fill="#0039a6" y="2" width="9" height="2"/></svg>
|
After Width: | Height: | Size: 266 B |
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 -30000 90000 60000">
|
||||
<title>Flag of Turkey</title>
|
||||
<path fill="#e30a17" d="m0-30000h90000v60000H0z"/>
|
||||
<path fill="#fff" d="m41750 0 13568-4408-8386 11541V-7133l8386 11541zm925 8021a15000 15000 0 1 1 0-16042 12000 12000 0 1 0 0 16042z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 323 B |
|
@ -4,7 +4,7 @@ Czech.svg: https://commons.wikimedia.org/wiki/Flag_of_the_Czech_Republic.svg
|
|||
Danish.svg: https://commons.wikimedia.org/wiki/Flag_of_Denmark.svg
|
||||
Dutch.svg: https://commons.wikimedia.org/wiki/Flag_of_the_Netherlands.svg
|
||||
English.svg: https://commons.wikimedia.org/wiki/Flag_of_the_United_Kingdom_(1-2).svg
|
||||
Finish.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Finland.svg
|
||||
Finnish.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Finland.svg
|
||||
French.svg: https://commons.wikimedia.org/wiki/File:Flag_of_France.svg
|
||||
German.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Germany.svg
|
||||
Greek.svg: https://commons.wikimedia.org/wiki/Flag_of_Greece.svg
|
||||
|
@ -17,4 +17,5 @@ Polish.svg: https://commons.wikimedia.org/wiki/Flag_of_Poland.svg
|
|||
Portuguese.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Portugal.svg
|
||||
Spanish.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Spain.svg
|
||||
Swedish.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Sweden.svg
|
||||
Russian.svg: https://commons.wikimedia.org/wiki/File:Flag_of_Russia.svg
|
||||
Other.svg: https://en.wikipedia.org/wiki/File:Flag_with_question_mark.svg
|
||||
|
|
|
@ -138,9 +138,9 @@ static constexpr const std::array<const char*, static_cast<size_t>(Trait::MaxCou
|
|||
}};
|
||||
|
||||
static constexpr std::array<const char*, static_cast<size_t>(Language::MaxCount)> s_language_names = {{
|
||||
"Catalan", "Chinese", "Czech", "Danish", "Dutch", "English", "Finnish",
|
||||
"French", "German", "Greek", "Hebrew", "Iranian", "Italian", "Japanese",
|
||||
"Korean", "Norwegian", "Polish", "Portuguese", "Russian", "Spanish", "Swedish",
|
||||
"Catalan", "Chinese", "Czech", "Danish", "Dutch", "English", "Finnish", "French",
|
||||
"German", "Greek", "Hebrew", "Iranian", "Italian", "Japanese", "Korean", "Norwegian",
|
||||
"Polish", "Portuguese", "Russian", "Spanish", "Swedish", "Turkish",
|
||||
}};
|
||||
|
||||
static constexpr const char* GAMEDB_YAML_FILENAME = "gamedb.yaml";
|
||||
|
|
|
@ -88,6 +88,7 @@ enum class Language : u8
|
|||
Russian,
|
||||
Spanish,
|
||||
Swedish,
|
||||
Turkish,
|
||||
MaxCount,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue