summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/btm/btm_system.cpp
diff options
context:
space:
mode:
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);