diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2018-01-11 07:19:19 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2018-01-11 07:19:19 -0800 |
commit | 81b13f78ea27aaa6704457124931148244fd1614 (patch) | |
tree | 781abb42054d9c2e51fdc1aefc44d1ad81d265d7 /Alc/ALc.c | |
parent | 9b9ec2c21a7f0992a6ca64ac9cb2a03838e11cd7 (diff) |
Move the CPU capability flags to a separate header
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,6 +41,7 @@ #include "bformatdec.h" #include "alu.h" +#include "cpu_caps.h" #include "compat.h" #include "threads.h" #include "alstring.h" @@ -900,7 +901,7 @@ static void alc_init(void) static void alc_initconfig(void) { const char *devs, *str; - ALuint capfilter; + int capfilter; float valf; int i, n; |