diff --git a/src/core/hle/service/hid/controllers/npad.h b/src/core/hle/service/hid/controllers/npad.h index f59166d67a..151fb97fb7 100644 --- a/src/core/hle/service/hid/controllers/npad.h +++ b/src/core/hle/service/hid/controllers/npad.h @@ -301,14 +301,14 @@ private: NPadGeneric left_joy_states; NPadGeneric right_joy_states; NPadGeneric pokeball_states; - NPadGeneric libnx; // TODO(ogniK): Find out what this actually is, libnx seems to only be - // relying on this for the time being + NPadGeneric libnx; // TODO(ogniK): Find out what this actually is, libnx seems to only be + // relying on this for the time being SixAxisGeneric full; // used - SixAxisGeneric _handheld; // stub - SixAxisGeneric _left_dual; // stub + SixAxisGeneric _handheld; // stub + SixAxisGeneric _left_dual; // stub SixAxisGeneric _right_dual; // stub - SixAxisGeneric _left; // stub - SixAxisGeneric _right; // stub + SixAxisGeneric _left; // stub + SixAxisGeneric _right; // stub NPadDevice device_type; NPadProperties properties; INSERT_PADDING_WORDS(1); diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index a51aef5766..f7a247ea17 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -397,7 +397,7 @@ void Hid::StartSixAxisSensor(Kernel::HLERequestContext& ctx) { const auto applet_resource_user_id{rp.Pop()}; LOG_DEBUG(Service_HID, "called, handle={}, applet_resource_user_id={}", handle, - applet_resource_user_id); + applet_resource_user_id); applet_resource->ActivateController(HidController::SixAxisSensor); IPC::ResponseBuilder rb{ctx, 2}; @@ -1191,4 +1191,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system std::make_shared()->InstallAsService(service_manager); } -} // namespace Service::HID \ No newline at end of file +} // namespace Service::HID