From d2dfbba8c8358c370166d4e9bf7b6e870f73a034 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Mon, 22 Feb 2021 06:07:57 +0100 Subject: [PATCH] early-access version 1481 --- README.md | 2 +- src/core/hle/service/hid/hid.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 406991cc8..e7ade478b 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 1480. +This is the source code for early-access 1481. ## Legal Notice diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 6a72b8440..ba27bbb05 100755 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -1099,13 +1099,13 @@ void Hid::GetVibrationDeviceInfo(Kernel::HLERequestContext& ctx) { case Controller_NPad::NpadType::JoyconDual: case Controller_NPad::NpadType::JoyconLeft: case Controller_NPad::NpadType::JoyconRight: + default: vibration_device_info.type = VibrationDeviceType::LinearResonantActuator; break; case Controller_NPad::NpadType::GameCube: vibration_device_info.type = VibrationDeviceType::GcErm; break; case Controller_NPad::NpadType::Pokeball: - default: vibration_device_info.type = VibrationDeviceType::Unknown; break; }