You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This defines the previously undefined behavior of what happens when you have two files that overlap each other due to
19
-
// regional things
20
-
// I.E.: ui/message/msg_menu.msbt and ui/message/msg_menu+us_en.msbt
21
-
// The regional variant should take priority. Since there can only be one regional file, there are only two situations which need to be handled:
22
-
// 1.) ui/message/msg_menu.msbt is found and then ui/message/msg_menu+us_en.msbt is found. ui/message/msg_menu+us_en.msbt should overwrite the previous file
23
-
// 2.) ui/message/msg_menu+us_en.msbt is found first, and when ui/message/msg_menu.msbt is found it should be discarded
24
-
// To solve this I store the hash of every file which has a regional variant which has been found, and then if a non-regional variant is found
0 commit comments