1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 03:42:57 +08:00

Fix tests failing locally due to not using invariant culture

This commit is contained in:
Susko3 2024-03-27 18:56:26 +01:00
parent 4490dbf896
commit 53900d5472

View File

@ -132,7 +132,7 @@ namespace osu.Game.Skinning
{
// skins without a skin.ini are supposed to import using the "latest version" spec.
// see https://github.com/peppy/osu-stable-reference/blob/1531237b63392e82c003c712faa028406073aa8f/osu!/Graphics/Skinning/SkinManager.cs#L297-L298
newLines.Add($"Version: {SkinConfiguration.LATEST_VERSION}");
newLines.Add(FormattableString.Invariant($"Version: {SkinConfiguration.LATEST_VERSION}"));
// In the case a skin doesn't have a skin.ini yet, let's create one.
writeNewSkinIni();