forked from akanyan/mu3-mods
fix(SortByInternal): better title
This commit is contained in:
parent
8a66b8becd
commit
af15a4410a
@ -2,7 +2,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net35</TargetFramework>
|
<TargetFramework>net35</TargetFramework>
|
||||||
<Company>7EVENDAYS⇔HOLIDAYS</Company>
|
<Company>7EVENDAYS⇔HOLIDAYS</Company>
|
||||||
<Version>1.8.0</Version>
|
<Version>1.8.1</Version>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
|
@ -18,7 +18,7 @@ public static class patch_MusicSort1IDEnum {
|
|||||||
new MusicSort1TableRecord(4, "Level", "譜面レベル", 0),
|
new MusicSort1TableRecord(4, "Level", "譜面レベル", 0),
|
||||||
new MusicSort1TableRecord(5, "Name", "曲名", 0),
|
new MusicSort1TableRecord(5, "Name", "曲名", 0),
|
||||||
new MusicSort1TableRecord(6, "Attribute", "属性", 0),
|
new MusicSort1TableRecord(6, "Attribute", "属性", 0),
|
||||||
new MusicSort1TableRecord(7, "InternalLevel", "インターナル", 0)
|
new MusicSort1TableRecord(7, "InternalLevel", "譜面定数", 0)
|
||||||
};
|
};
|
||||||
List = new[] {
|
List = new[] {
|
||||||
patch_MusicSort1ID.Genre,
|
patch_MusicSort1ID.Genre,
|
||||||
|
@ -9,7 +9,7 @@ public static class patch_MusicSort2IDEnum {
|
|||||||
|
|
||||||
public static bool loadFromFile(string filename) {
|
public static bool loadFromFile(string filename) {
|
||||||
var rv = orig_loadFromFile(filename);
|
var rv = orig_loadFromFile(filename);
|
||||||
records[4].Name = "インターナル";
|
records[4].Name = "譜面定数";
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user