aboutsummaryrefslogtreecommitdiffstats
path: root/core/device.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-03-27 06:15:39 -0700
committerChris Robinson <[email protected]>2022-03-29 11:48:57 -0700
commit6bc1787a3bc1d578cbafe2293549b8999cf3860e (patch)
tree19b3ed4dc4e80743b274b1e405af6d7834839cc8 /core/device.h
parent4ca8992fbd8a367973f23046a4f6b23980090e18 (diff)
Make and use a Default enum for StereoEncoding
Diffstat (limited to 'core/device.h')
-rw-r--r--core/device.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/device.h b/core/device.h
index e9596bb4..48d04f77 100644
--- a/core/device.h
+++ b/core/device.h
@@ -57,9 +57,11 @@ enum class RenderMode : unsigned char {
};
enum class StereoEncoding : unsigned char {
- Normal,
+ Basic,
Uhj,
- Hrtf
+ Hrtf,
+
+ Default = Basic
};