aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--alc/events.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/events.h b/alc/events.h
index 51f32e57..3b22a4c4 100644
--- a/alc/events.h
+++ b/alc/events.h
@@ -26,9 +26,9 @@ inline std::mutex EventMutex;
inline ALCEVENTPROCTYPESOFT EventCallback{};
inline void *EventUserPtr{};
-void Event(ALCenum eventType, ALCdevice *device, std::string_view message) noexcept;
+void Event(alc::EventType eventType, ALCdevice *device, std::string_view message) noexcept;
-inline void Event(ALCenum eventType, std::string_view message) noexcept
+inline void Event(alc::EventType eventType, std::string_view message) noexcept
{ Event(eventType, nullptr, message); }
} // namespace alc