diff options
author | Chris Robinson <[email protected]> | 2013-11-04 10:51:22 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-11-04 10:51:22 -0800 |
commit | 94aeb5f52e656e021ce626ef523fb4a29cce117f (patch) | |
tree | f74af6730dc80774fb414a61d5f4a3193b5a0eb7 /Alc/backends/base.h | |
parent | 9760a592b263f41b5fc8b7d5668ae538066acc7d (diff) |
Use a unique backend type for loopback
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r-- | Alc/backends/base.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/backends/base.h b/Alc/backends/base.h index 607ca6e8..1bbc1fb0 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -82,7 +82,8 @@ DECLARE_ALCBACKEND_VTABLE(T) = { \ typedef enum ALCbackend_Type { ALCbackend_Playback, - ALCbackend_Capture + ALCbackend_Capture, + ALCbackend_Loopback } ALCbackend_Type; |