diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-15 20:24:20 -0600 |
|---|---|---|
| committer | german77 <juangerman-13@hotmail.com> | 2024-02-17 12:39:36 -0600 |
| commit | 110969e2070577557eddef09071a7be3f5ead8e4 (patch) | |
| tree | b2e7f54abd8a3ac8f05289af48dfb54e2223078c /src/core/hle/service/btm/btm_user.cpp | |
| parent | 9c0724b27073e5f6cdf7ec9d10852cc5a073d863 (diff) | |
service: btm: Implement function needed by QLaunch
Diffstat (limited to 'src/core/hle/service/btm/btm_user.cpp')
| -rw-r--r-- | src/core/hle/service/btm/btm_user.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/hle/service/btm/btm_user.cpp b/src/core/hle/service/btm/btm_user.cpp index 0c3b41208..d2e228f8d 100644 --- a/src/core/hle/service/btm/btm_user.cpp +++ b/src/core/hle/service/btm/btm_user.cpp @@ -5,16 +5,14 @@ #include "core/hle/service/btm/btm_user.h" #include "core/hle/service/btm/btm_user_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 { IBtmUser::IBtmUser(Core::System& system_) : ServiceFramework{system_, "btm:u"} { // clang-format off - static const FunctionInfo functions[] = { - {0, C<&IBtmUser::GetCore>, "GetCore"}, - }; + static const FunctionInfo functions[] = { + {0, C<&IBtmUser::GetCore>, "GetCore"}, + }; // clang-format on RegisterHandlers(functions); |
