aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-06-02 19:33:21 -0700
committerChris Robinson <[email protected]>2023-06-02 19:33:21 -0700
commitcb7d5bc6d719c9114982e64c39caf2db7add9c58 (patch)
tree52b32ad283d5afc2ca980ef614e04b3d80440b48 /alc/backends
parentd769041916df4efb48fd212683dc9842decc10f1 (diff)
Fix comment typo
Diffstat (limited to 'alc/backends')
-rw-r--r--alc/backends/wasapi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/wasapi.cpp b/alc/backends/wasapi.cpp
index 333c0dc7..4e67f7dd 100644
--- a/alc/backends/wasapi.cpp
+++ b/alc/backends/wasapi.cpp
@@ -275,7 +275,7 @@ struct DeviceHelper final : private IMMNotificationClient
#endif
}
- /** -------------------------- IUnkonwn ----------------------------- */
+ /** -------------------------- IUnknown ----------------------------- */
std::atomic<ULONG> mRefCount{1};
STDMETHODIMP_(ULONG) AddRef() noexcept override { return mRefCount.fetch_add(1u) + 1u; }
STDMETHODIMP_(ULONG) Release() noexcept override { return mRefCount.fetch_sub(1u) - 1u; }