aboutsummaryrefslogtreecommitdiffstats
path: root/al/event.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-09-20 04:11:52 -0700
committerChris Robinson <[email protected]>2020-09-20 04:11:52 -0700
commit191150d9a8e5dea9350030c8d4cade37fcad1695 (patch)
tree3d5cb8b6c70c9bdd688d805f7b0d8e5f41d09c27 /al/event.cpp
parent8ef242bce084fae0689f2148442d10b5d029a512 (diff)
Remove deprecated, performance, and error event types
These would be better served with a proper debug API, rather than a general audio event API.
Diffstat (limited to 'al/event.cpp')
-rw-r--r--al/event.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/al/event.cpp b/al/event.cpp
index cd8ea7c2..296c64e6 100644
--- a/al/event.cpp
+++ b/al/event.cpp
@@ -149,12 +149,6 @@ START_API_FUNC
flags |= EventType_BufferCompleted;
else if(type == AL_EVENT_TYPE_SOURCE_STATE_CHANGED_SOFT)
flags |= EventType_SourceStateChange;
- else if(type == AL_EVENT_TYPE_ERROR_SOFT)
- flags |= EventType_Error;
- else if(type == AL_EVENT_TYPE_PERFORMANCE_SOFT)
- flags |= EventType_Performance;
- else if(type == AL_EVENT_TYPE_DEPRECATED_SOFT)
- flags |= EventType_Deprecated;
else if(type == AL_EVENT_TYPE_DISCONNECTED_SOFT)
flags |= EventType_Disconnected;
else