diff options
| author | Xpl0itR <xpl0itr@outlook.com> | 2020-07-04 00:16:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-04 01:16:49 +0200 |
| commit | 7cb653297129b9656574d9a1b6ecf101f2730eb7 (patch) | |
| tree | 94fed8a6828c1f2ffabde0ef5c0161105cf929b9 /Ryujinx.Common/Configuration/AudioBackend.cs | |
| parent | af72875bee117cf13b4cc74debed7bb49333aa62 (diff) | |
Implement audio backend configuration option (#1325)
* Implement audio backend configuration option
* Use OpenAL by default
* Increment version number in config.json
and add 30px to the height of the settings window
* nits
* capitalise audio backend names
Diffstat (limited to 'Ryujinx.Common/Configuration/AudioBackend.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/AudioBackend.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/AudioBackend.cs b/Ryujinx.Common/Configuration/AudioBackend.cs new file mode 100644 index 00000000..28233354 --- /dev/null +++ b/Ryujinx.Common/Configuration/AudioBackend.cs @@ -0,0 +1,9 @@ +namespace Ryujinx.Configuration +{ + public enum AudioBackend + { + Dummy, + OpenAl, + SoundIo + } +}
\ No newline at end of file |
