fix(SortByInternal): better title

This commit is contained in:
あかニャン 2024-07-06 03:39:19 +09:00
parent 8a66b8becd
commit af15a4410a
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Company>7EVENDAYS⇔HOLIDAYS</Company>
<Version>1.8.0</Version>
<Version>1.8.1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>

View File

@ -18,7 +18,7 @@ public static class patch_MusicSort1IDEnum {
new MusicSort1TableRecord(4, "Level", "譜面レベル", 0),
new MusicSort1TableRecord(5, "Name", "曲名", 0),
new MusicSort1TableRecord(6, "Attribute", "属性", 0),
new MusicSort1TableRecord(7, "InternalLevel", "インターナル", 0)
new MusicSort1TableRecord(7, "InternalLevel", "譜面定数", 0)
};
List = new[] {
patch_MusicSort1ID.Genre,

View File

@ -9,7 +9,7 @@ public static class patch_MusicSort2IDEnum {
public static bool loadFromFile(string filename) {
var rv = orig_loadFromFile(filename);
records[4].Name = "インターナル";
records[4].Name = "譜面定数";
return rv;
}
}