summaryrefslogtreecommitdiff
path: root/src/core/settings.cpp
diff options
context:
space:
mode:
authorGravatar wwylele2017-01-20 22:46:39 +0200
committerGravatar wwylele2017-03-01 23:30:57 +0200
commit1d1329af23221be31c244889609415e0fb0b2641 (patch)
tree4206317bc0e2078b1a1d4eef808e2bd475c47512 /src/core/settings.cpp
parentInput: add device and factory template (diff)
downloadyuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.gz
yuzu-1d1329af23221be31c244889609415e0fb0b2641.tar.xz
yuzu-1d1329af23221be31c244889609415e0fb0b2641.zip
HID: use ButtonDevice
Diffstat (limited to 'src/core/settings.cpp')
-rw-r--r--src/core/settings.cpp3
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 @@
4 4
5#include "audio_core/audio_core.h" 5#include "audio_core/audio_core.h"
6#include "core/gdbstub/gdbstub.h" 6#include "core/gdbstub/gdbstub.h"
7#include "core/hle/service/hid/hid.h"
7#include "settings.h" 8#include "settings.h"
8#include "video_core/video_core.h" 9#include "video_core/video_core.h"
9 10
@@ -29,6 +30,8 @@ void Apply() {
29 30
30 AudioCore::SelectSink(values.sink_id); 31 AudioCore::SelectSink(values.sink_id);
31 AudioCore::EnableStretching(values.enable_audio_stretching); 32 AudioCore::EnableStretching(values.enable_audio_stretching);
33
34 Service::HID::ReloadInputDevices();
32} 35}
33 36
34} // namespace 37} // namespace