Remove unneeded commas
This commit is contained in:
parent
b3615c6c0d
commit
c6843dfb38
18 changed files with 25 additions and 25 deletions
|
@ -29,7 +29,7 @@ namespace Ryujinx.HLE.FileSystem.Content
|
|||
{ "FontExtendedChineseSimplified", 0x0100000000000814 },
|
||||
{ "FontKorean", 0x0100000000000812 },
|
||||
{ "FontChineseTraditional", 0x0100000000000813 },
|
||||
{ "FontNintendoExtended" , 0x0100000000000810 },
|
||||
{ "FontNintendoExtended" , 0x0100000000000810 }
|
||||
};
|
||||
|
||||
_device = device;
|
||||
|
|
|
@ -11,7 +11,7 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|||
String,
|
||||
IStream,
|
||||
OStream,
|
||||
IOStream,
|
||||
IOStream
|
||||
}
|
||||
|
||||
private SpecialType _specialSubstitutionKey;
|
||||
|
|
|
@ -27,7 +27,7 @@ namespace Ryujinx.HLE.HOS.Services.Acc
|
|||
{ 0, Get },
|
||||
{ 1, GetBase },
|
||||
{ 10, GetImageSize },
|
||||
{ 11, LoadImage },
|
||||
{ 11, LoadImage }
|
||||
};
|
||||
|
||||
_profile = profile;
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
{
|
||||
internal enum BsdIoctl
|
||||
{
|
||||
AtMark = 0x40047307,
|
||||
AtMark = 0x40047307
|
||||
}
|
||||
}
|
||||
|
|
|
@ -134,7 +134,7 @@ namespace Ryujinx.HLE.HOS.Services.Bsd
|
|||
{ 24, Write },
|
||||
{ 25, Read },
|
||||
{ 26, Close },
|
||||
{ 27, DuplicateSocket },
|
||||
{ 27, DuplicateSocket }
|
||||
};
|
||||
|
||||
_isPrivileged = isPrivileged;
|
||||
|
@ -667,7 +667,7 @@ namespace Ryujinx.HLE.HOS.Services.Bsd
|
|||
Family = (int)newSocket.AddressFamily,
|
||||
Type = (int)newSocket.SocketType,
|
||||
Protocol = (int)newSocket.ProtocolType,
|
||||
Handle = newSocket,
|
||||
Handle = newSocket
|
||||
};
|
||||
|
||||
_sockets.Add(newBsdSocket);
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
Output = 4,
|
||||
Error = 8,
|
||||
Disconnected = 0x10,
|
||||
Invalid = 0x20,
|
||||
Invalid = 0x20
|
||||
}
|
||||
|
||||
public int SocketFd { get; private set; }
|
||||
|
|
|
@ -38,7 +38,7 @@ namespace Ryujinx.HLE.HOS.Services.FspSrv
|
|||
{ 10, Commit },
|
||||
{ 11, GetFreeSpaceSize },
|
||||
{ 12, GetTotalSpaceSize },
|
||||
{ 13, CleanDirectoryRecursively },
|
||||
{ 13, CleanDirectoryRecursively }
|
||||
//{ 14, GetFileTimeStampRaw }
|
||||
};
|
||||
|
||||
|
|
|
@ -5,26 +5,26 @@ namespace Ryujinx.HLE.HOS.Services.Hid
|
|||
public enum HidNpadJoyAssignmentMode
|
||||
{
|
||||
Dual,
|
||||
Single,
|
||||
Single
|
||||
}
|
||||
|
||||
public enum HidNpadHandheldActivationMode
|
||||
{
|
||||
Dual,
|
||||
Single,
|
||||
None,
|
||||
None
|
||||
}
|
||||
|
||||
public enum HidNpadJoyDeviceType
|
||||
{
|
||||
Left,
|
||||
Right,
|
||||
Right
|
||||
}
|
||||
|
||||
public enum HidNpadJoyHoldType
|
||||
{
|
||||
Vertical,
|
||||
Horizontal,
|
||||
Horizontal
|
||||
}
|
||||
|
||||
[Flags]
|
||||
|
@ -36,6 +36,6 @@ namespace Ryujinx.HLE.HOS.Services.Hid
|
|||
Dual = 1 << 2,
|
||||
Left = 1 << 3,
|
||||
Right = 1 << 4,
|
||||
Invalid = 1 << 5,
|
||||
Invalid = 1 << 5
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{
|
||||
None,
|
||||
Left,
|
||||
Right,
|
||||
Right
|
||||
}
|
||||
|
||||
public struct HidVibrationDeviceValue
|
||||
|
|
|
@ -145,7 +145,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid
|
|||
{ 512, ReadPalmaUniqueCode },
|
||||
{ 513, SetPalmaUniqueCodeInvalid },
|
||||
{ 1000, SetNpadCommunicationMode },
|
||||
{ 1001, GetNpadCommunicationMode },
|
||||
{ 1001, GetNpadCommunicationMode }
|
||||
};
|
||||
|
||||
_npadStyleSetUpdateEvent = new KEvent(system);
|
||||
|
@ -432,7 +432,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid
|
|||
_sensorFusionParams = new HidSensorFusionParameters()
|
||||
{
|
||||
RevisePower = context.RequestData.ReadInt32(),
|
||||
ReviseRange = context.RequestData.ReadInt32(),
|
||||
ReviseRange = context.RequestData.ReadInt32()
|
||||
};
|
||||
|
||||
long appletResourceUserId = context.RequestData.ReadInt64();
|
||||
|
@ -487,7 +487,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid
|
|||
_accelerometerParams = new HidAccelerometerParameters()
|
||||
{
|
||||
X = context.RequestData.ReadInt32(),
|
||||
Y = context.RequestData.ReadInt32(),
|
||||
Y = context.RequestData.ReadInt32()
|
||||
};
|
||||
|
||||
long appletResourceUserId = context.RequestData.ReadInt64();
|
||||
|
|
|
@ -118,7 +118,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldr
|
|||
{ 1, UnloadNro },
|
||||
{ 2, LoadNrr },
|
||||
{ 3, UnloadNrr },
|
||||
{ 4, Initialize },
|
||||
{ 4, Initialize }
|
||||
};
|
||||
|
||||
_nrrInfos = new List<NrrInfo>(MaxNrr);
|
||||
|
|
|
@ -14,7 +14,7 @@ namespace Ryujinx.HLE.HOS.Services.Lr
|
|||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
{ 0, OpenLocationResolver },
|
||||
{ 0, OpenLocationResolver }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1705,7 +1705,7 @@ namespace Ryujinx.HLE.HOS.Services.Set
|
|||
{ "time!standard_steady_clock_rtc_update_interval_minutes", 5 },
|
||||
{ "time!standard_network_clock_sufficient_accuracy_minutes", 43200 },
|
||||
{ "usb!usb30_force_enabled", false },
|
||||
{ "wlan_debug!skip_wlan_boot", false },
|
||||
{ "wlan_debug!skip_wlan_boot", false }
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
BadHints,
|
||||
Protocol,
|
||||
Overflow,
|
||||
Max,
|
||||
Max
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
|||
{ 5, GetGaiStringError },
|
||||
{ 8, RequestCancelHandle },
|
||||
{ 9, CancelSocketCall },
|
||||
{ 11, ClearDnsAddresses },
|
||||
{ 11, ClearDnsAddresses }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -8,6 +8,6 @@
|
|||
TryAgain,
|
||||
NoRecovery,
|
||||
NoData,
|
||||
NoAddress = NoData,
|
||||
NoAddress = NoData
|
||||
}
|
||||
}
|
||||
|
|
|
@ -147,6 +147,6 @@ namespace Ryujinx.HLE.Utilities
|
|||
|
||||
RfKill = 132 /* Operation not possible due to RF-kill */,
|
||||
|
||||
HwPoison = 133 /* Memory page has hardware error */,
|
||||
HwPoison = 133 /* Memory page has hardware error */
|
||||
}
|
||||
}
|
|
@ -126,6 +126,6 @@
|
|||
* buffer in general */
|
||||
QosTrafficCtrlError = (BaseError + 1014),
|
||||
/* problem with some part of the flowspec */
|
||||
QosGenericError = (BaseError + 1015),
|
||||
QosGenericError = (BaseError + 1015)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue