mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-26 07:12:21 -05:00
Inheritance list should not be redundant (#5230)
This commit is contained in:
@@ -775,7 +775,7 @@ namespace Ryujinx.HLE.HOS.Services.Mii.Types
|
||||
|
||||
private static ReadOnlySpan<ElementInfo> ElementInfos => MemoryMarshal.Cast<byte, ElementInfo>(ElementInfoArray);
|
||||
|
||||
private enum ElementInfoIndex : int
|
||||
private enum ElementInfoIndex
|
||||
{
|
||||
HairType,
|
||||
Height,
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace Ryujinx.HLE.HOS.Services.Mii.Types
|
||||
};
|
||||
|
||||
[Flags]
|
||||
public enum BeardAndMustacheFlag : int
|
||||
public enum BeardAndMustacheFlag
|
||||
{
|
||||
Beard = 1,
|
||||
Mustache
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Mii.Types
|
||||
{
|
||||
enum Source : int
|
||||
enum Source
|
||||
{
|
||||
Database,
|
||||
Default
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Mii.Types
|
||||
{
|
||||
[Flags]
|
||||
enum SourceFlag : int
|
||||
enum SourceFlag
|
||||
{
|
||||
Database = 1 << Source.Database,
|
||||
Default = 1 << Source.Default,
|
||||
|
||||
Reference in New Issue
Block a user