diff options
author | wwylele <wwylele@gmail.com> | 2017-01-20 21:46:39 +0100 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2017-03-01 22:30:57 +0100 |
commit | 1d1329af23221be31c244889609415e0fb0b2641 (patch) | |
tree | 4206317bc0e2078b1a1d4eef808e2bd475c47512 /src/core/settings.cpp | |
parent | Input: add device and factory template (diff) | |
download | yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.gz yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.bz2 yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.lz yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.xz yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.zst yuzu-1d1329af23221be31c244889609415e0fb0b2641.zip |
Diffstat (limited to 'src/core/settings.cpp')
-rw-r--r-- | src/core/settings.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 3a32b70aa..a598f9f2f 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -4,6 +4,7 @@ #include "audio_core/audio_core.h" #include "core/gdbstub/gdbstub.h" +#include "core/hle/service/hid/hid.h" #include "settings.h" #include "video_core/video_core.h" @@ -29,6 +30,8 @@ void Apply() { AudioCore::SelectSink(values.sink_id); AudioCore::EnableStretching(values.enable_audio_stretching); + + Service::HID::ReloadInputDevices(); } } // namespace |