Skip to content

Commit 764a08d

Browse files
authored
Merge pull request #126 from AyeItsHarry/main
fix: make app file names lower case so portugese and russian wii room translations work on linux
2 parents 5bba294 + 0e347f2 commit 764a08d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

WiiLink-Patcher-CLI/WiiLink_Patcher.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2893,17 +2893,17 @@ static void WiiRoom_Patch(Language language)
28932893
new KeyValuePair<string, string>("WiinoMa_3_Russian", "00000003"),
28942894
new KeyValuePair<string, string>("WiinoMa_4_Russian", "00000004"),
28952895
new KeyValuePair<string, string>("WiinoMa_9_Russian", "00000009"),
2896-
new KeyValuePair<string, string>("WiinoMa_C_Russian", "0000000C"),
2897-
new KeyValuePair<string, string>("WiinoMa_D_Russian", "0000000D"),
2898-
new KeyValuePair<string, string>("WiinoMa_E_Russian", "0000000E")
2896+
new KeyValuePair<string, string>("WiinoMa_C_Russian", "0000000c"),
2897+
new KeyValuePair<string, string>("WiinoMa_D_Russian", "0000000d"),
2898+
new KeyValuePair<string, string>("WiinoMa_E_Russian", "0000000e")
28992899
]);
29002900
break;
29012901
case Language.Portuguese:
29022902
wiiRoomPatchList.AddRange(
29032903
[
29042904
new KeyValuePair<string, string>("WiinoMa_3_Portuguese", "00000003"),
29052905
new KeyValuePair<string, string>("WiinoMa_4_Portuguese", "00000004"),
2906-
new KeyValuePair<string, string>("WiinoMa_D_Portuguese", "0000000D")
2906+
new KeyValuePair<string, string>("WiinoMa_D_Portuguese", "0000000d")
29072907
]);
29082908
break;
29092909
}

0 commit comments

Comments
 (0)