aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Bluetooth')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs14
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs6
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs2
3 files changed, 11 insertions, 11 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs b/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
index 81f4a7d2..5b862400 100644
--- a/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
@@ -5,21 +5,21 @@ namespace Ryujinx.HLE.HOS.Services.Bluetooth.BluetoothDriver
static class BluetoothEventManager
{
public static KEvent InitializeBleDebugEvent;
- public static int InitializeBleDebugEventHandle;
+ public static int InitializeBleDebugEventHandle;
public static KEvent UnknownBleDebugEvent;
- public static int UnknownBleDebugEventHandle;
+ public static int UnknownBleDebugEventHandle;
public static KEvent RegisterBleDebugEvent;
- public static int RegisterBleDebugEventHandle;
+ public static int RegisterBleDebugEventHandle;
public static KEvent InitializeBleEvent;
- public static int InitializeBleEventHandle;
+ public static int InitializeBleEventHandle;
public static KEvent UnknownBleEvent;
- public static int UnknownBleEventHandle;
+ public static int UnknownBleEventHandle;
public static KEvent RegisterBleEvent;
- public static int RegisterBleEventHandle;
+ public static int RegisterBleEventHandle;
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs
index feff5a73..ace2c86a 100644
--- a/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs
@@ -10,9 +10,9 @@ namespace Ryujinx.HLE.HOS.Services.Bluetooth
[Service("btdrv")]
class IBluetoothDriver : IpcService
{
-#pragma warning disable CS0414
+#pragma warning disable CS0414, IDE0052 // Remove unread private member
private string _unknownLowEnergy;
-#pragma warning restore CS0414
+#pragma warning restore CS0414, IDE0052
public IBluetoothDriver(ServiceCtx context) { }
@@ -100,4 +100,4 @@ namespace Ryujinx.HLE.HOS.Services.Bluetooth
return ResultCode.Success;
}
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs
index 1a5e25a4..04782d08 100644
--- a/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs
@@ -27,4 +27,4 @@ namespace Ryujinx.HLE.HOS.Services.Bluetooth
return ResultCode.Success;
}
}
-} \ No newline at end of file
+}