diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2023-05-12 16:01:06 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2023-05-12 16:20:49 -0700 |
commit | 72f02418e505a192c0cc7b27cd7b3aa28a7a03ec (patch) | |
tree | 674a2c9cdde55d0863fb0ff179c9671aac234f00 /alc/backends/winmm.cpp | |
parent | ed0b4d78563a9d15c9a2a7b091058c2ac580b266 (diff) |
Clean up some more includes
Diffstat (limited to 'alc/backends/winmm.cpp')
-rw-r--r-- | alc/backends/winmm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/backends/winmm.cpp b/alc/backends/winmm.cpp index 135b59df..edb875a0 100644 --- a/alc/backends/winmm.cpp +++ b/alc/backends/winmm.cpp @@ -55,8 +55,8 @@ namespace { #define DEVNAME_HEAD "OpenAL Soft on " -al::vector<std::string> PlaybackDevices; -al::vector<std::string> CaptureDevices; +std::vector<std::string> PlaybackDevices; +std::vector<std::string> CaptureDevices; bool checkName(const al::vector<std::string> &list, const std::string &name) { return std::find(list.cbegin(), list.cend(), name) != list.cend(); } |