diff options
author | Chris Robinson <[email protected]> | 2023-05-01 14:46:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-01 14:46:26 -0700 |
commit | 89f67ad6f9878ecfb48b49ce0dd69b9ecb065d0b (patch) | |
tree | 0a20a4dcd51bde9620fbc44b5a2938e3e64bb0ab /alc/context.h | |
parent | bd8c13d7883cb0a570f724885c7a55ad687dada6 (diff) |
Use a 64-bit value for tracking ID filters
Diffstat (limited to 'alc/context.h')
-rw-r--r-- | alc/context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/context.h b/alc/context.h index c626160b..b3f548c8 100644 --- a/alc/context.h +++ b/alc/context.h @@ -146,7 +146,7 @@ struct ALCcontext : public al::intrusive_ref<ALCcontext>, ContextBase { ALDEBUGPROCSOFT mDebugCb{}; void *mDebugParam{nullptr}; std::vector<uint> mDebugFilters; - std::unordered_map<uint,std::vector<uint>> mDebugIdFilters; + std::vector<uint64_t> mDebugIdFilters; std::deque<LogEntry> mDebugLog; ALlistener mListener{}; |