diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-02 20:17:14 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-02 20:24:30 -0400 |
commit | 1c7c798e9e3c4d826624b9e1f8932f3eba64a587 (patch) | |
tree | 0a0b8fbc6328f51c13306ad0076400fb3e940a67 /src/yuzu/configuration/configure_audio.h | |
parent | 57e47bae321f001b81e6af6bf57bd611df7708f0 (diff) |
configure_audio: Move combo box index setting to their own functions
Keeps the individual behaviors in their own functions, and cleanly
separate. We can also do a little better by converting the relevant IDs
within the core to a QString only once, instead of converting every
string into a std::string.
Diffstat (limited to 'src/yuzu/configuration/configure_audio.h')
-rw-r--r-- | src/yuzu/configuration/configure_audio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_audio.h b/src/yuzu/configuration/configure_audio.h index 069e79d56..207f9dfb3 100644 --- a/src/yuzu/configuration/configure_audio.h +++ b/src/yuzu/configuration/configure_audio.h @@ -26,6 +26,8 @@ public slots: private: void setConfiguration(); + void setOutputSinkFromSinkID(); + void setAudioDeviceFromDeviceID(); void setVolumeIndicatorText(int percentage); std::unique_ptr<Ui::ConfigureAudio> ui; |