Inheritance list should not be redundant (#5230)

This commit is contained in:
Marco Carvalho
2023-06-15 00:54:27 -03:00
committed by GitHub
parent 82f90704a0
commit 32d21ddf17
20 changed files with 24 additions and 24 deletions

View File

@@ -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,

View File

@@ -21,7 +21,7 @@ namespace Ryujinx.HLE.HOS.Services.Mii.Types
};
[Flags]
public enum BeardAndMustacheFlag : int
public enum BeardAndMustacheFlag
{
Beard = 1,
Mustache

View File

@@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Mii.Types
{
enum Source : int
enum Source
{
Database,
Default

View File

@@ -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,