diff options
author | german77 <[email protected]> | 2024-02-25 10:06:37 -0600 |
---|---|---|
committer | german77 <[email protected]> | 2024-02-25 10:06:43 -0600 |
commit | e62cea20d10c7da79c744f2cccaef5ecd7e4d5dc (patch) | |
tree | 2868533ce88190978140864e9da26a8dfd37eec0 /src | |
parent | a93d249ac161e190b8c7046917bd9a3b6e79a0e0 (diff) | |
download | yuzu-mainline-e62cea20d10c7da79c744f2cccaef5ecd7e4d5dc.tar.gz yuzu-mainline-e62cea20d10c7da79c744f2cccaef5ecd7e4d5dc.zip |
core: hid: hid_core doesn't have access to LIBUSB
Diffstat (limited to 'src')
-rw-r--r-- | src/hid_core/frontend/emulated_controller.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/hid_core/frontend/emulated_controller.cpp b/src/hid_core/frontend/emulated_controller.cpp index 5cd26819c..0e93fb4de 100644 --- a/src/hid_core/frontend/emulated_controller.cpp +++ b/src/hid_core/frontend/emulated_controller.cpp @@ -175,10 +175,9 @@ void EmulatedController::LoadDevices() { if (npad_id_type == NpadIdType::Player1 || npad_id_type == NpadIdType::Handheld) { camera_params[1] = Common::ParamPackage{"engine:camera,camera:1"}; nfc_params[0] = Common::ParamPackage{"engine:virtual_amiibo,nfc:1"}; -#ifdef HAVE_LIBUSB +#ifndef ANDROID ring_params[1] = Common::ParamPackage{"engine:joycon,axis_x:100,axis_y:101"}; -#endif -#ifdef ANDROID +#else android_params = Common::ParamPackage{"engine:android,port:100"}; #endif } |