mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
Remove unneeded enum underlying types
This commit is contained in:
parent
1cfda3484d
commit
3a02739519
|
@ -1,6 +1,6 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
||||
{
|
||||
enum MemoryPoolState : int
|
||||
enum MemoryPoolState
|
||||
{
|
||||
Invalid = 0,
|
||||
Unknown = 1,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
||||
{
|
||||
enum FileSystemType : int
|
||||
enum FileSystemType
|
||||
{
|
||||
Logo = 2,
|
||||
ContentControl = 3,
|
||||
|
|
|
@ -6,7 +6,7 @@ namespace Ryujinx.HLE.HOS.Services.Psm
|
|||
{
|
||||
class IPsmServer : IpcService
|
||||
{
|
||||
enum ChargerType : int
|
||||
enum ChargerType
|
||||
{
|
||||
None,
|
||||
ChargerOrDock,
|
||||
|
|
Loading…
Reference in a new issue