From b29950dbd6657f6f6511bc2df2efc4b0ff40e8b9 Mon Sep 17 00:00:00 2001 From: Thomas Guillemard Date: Sun, 3 Nov 2019 18:26:29 +0100 Subject: hle: Fix some inconsistencies in namespace naming in Services (#808) Also fix IShopServiceAccessSystemInterface being in the wrong namespace. --- Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs (limited to 'Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs') diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs b/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs new file mode 100644 index 00000000..c4210b78 --- /dev/null +++ b/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.HLE.HOS.Services.BluetoothManager +{ + [Service("btm:sys")] + class IBtmSystem : IpcService + { + public IBtmSystem(ServiceCtx context) { } + } +} \ No newline at end of file -- cgit v1.2.3