aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/btm/btm_system.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-02-15 20:24:20 -0600
committergerman77 <juangerman-13@hotmail.com>2024-02-17 12:39:36 -0600
commit110969e2070577557eddef09071a7be3f5ead8e4 (patch)
treeb2e7f54abd8a3ac8f05289af48dfb54e2223078c /src/core/hle/service/btm/btm_system.cpp
parent9c0724b27073e5f6cdf7ec9d10852cc5a073d863 (diff)
service: btm: Implement function needed by QLaunch
Diffstat (limited to 'src/core/hle/service/btm/btm_system.cpp')
-rw-r--r--src/core/hle/service/btm/btm_system.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/service/btm/btm_system.cpp b/src/core/hle/service/btm/btm_system.cpp
index f6ac6bdba..99718a7b0 100644
--- a/src/core/hle/service/btm/btm_system.cpp
+++ b/src/core/hle/service/btm/btm_system.cpp
@@ -5,16 +5,15 @@
#include "core/hle/service/btm/btm_system.h"
#include "core/hle/service/btm/btm_system_core.h"
#include "core/hle/service/cmif_serialization.h"
-#include "core/hle/service/ipc_helpers.h"
#include "core/hle/service/service.h"
namespace Service::BTM {
IBtmSystem::IBtmSystem(Core::System& system_) : ServiceFramework{system_, "btm:sys"} {
// clang-format off
- static const FunctionInfo functions[] = {
- {0, C<&IBtmSystem::GetCore>, "GetCore"},
- };
+ static const FunctionInfo functions[] = {
+ {0, C<&IBtmSystem::GetCore>, "GetCore"},
+ };
// clang-format on
RegisterHandlers(functions);