early-access version 4149

This commit is contained in:
pineappleEA 2024-02-18 22:43:02 +01:00
parent 70404689ef
commit be0bf24d0e
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 4148. This is the source code for early-access 4149.
## Legal Notice ## Legal Notice

View File

@ -174,9 +174,13 @@ void EmulatedController::LoadDevices() {
// Only map virtual devices to the first controller // Only map virtual devices to the first controller
if (npad_id_type == NpadIdType::Player1 || npad_id_type == NpadIdType::Handheld) { if (npad_id_type == NpadIdType::Player1 || npad_id_type == NpadIdType::Handheld) {
camera_params[1] = Common::ParamPackage{"engine:camera,camera:1"}; camera_params[1] = Common::ParamPackage{"engine:camera,camera:1"};
ring_params[1] = Common::ParamPackage{"engine:joycon,axis_x:100,axis_y:101"};
nfc_params[0] = Common::ParamPackage{"engine:virtual_amiibo,nfc:1"}; nfc_params[0] = Common::ParamPackage{"engine:virtual_amiibo,nfc:1"};
#ifdef HAVE_LIBUSB
ring_params[1] = Common::ParamPackage{"engine:joycon,axis_x:100,axis_y:101"};
#endif
#ifdef ANDROID
android_params = Common::ParamPackage{"engine:android,port:100"}; android_params = Common::ParamPackage{"engine:android,port:100"};
#endif
} }
output_params[LeftIndex] = left_joycon; output_params[LeftIndex] = left_joycon;