diff options
-rw-r--r-- | alc/helpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/helpers.cpp b/alc/helpers.cpp index 2725f542..ef6973cf 100644 --- a/alc/helpers.cpp +++ b/alc/helpers.cpp @@ -168,7 +168,7 @@ void DirectorySearch(const char *path, const char *ext, al::vector<std::string> al::vector<std::string> SearchDataFiles(const char *ext, const char *subdir) { - auto is_slash = [](int c) noexcept -> int { return (c == '\\' || c == '/'); } + auto is_slash = [](int c) noexcept -> int { return (c == '\\' || c == '/'); }; static std::mutex search_lock; std::lock_guard<std::mutex> _{search_lock}; |