mac/swift: fix typo in mpv_event_id string representation

this didn't break anything but might be confusing in log outputs.
This commit is contained in:
der richter 2024-10-05 14:38:22 +02:00 committed by Kacper Michajłow
parent 20b7f96ab3
commit 94d034ed99
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ extension mp_keymap {
extension mpv_event_id: CustomStringConvertible {
public var description: String {
switch self {
case MPV_EVENT_NONE: return "MPV_EVENT_NONE2"
case MPV_EVENT_NONE: return "MPV_EVENT_NONE"
case MPV_EVENT_SHUTDOWN: return "MPV_EVENT_SHUTDOWN"
case MPV_EVENT_LOG_MESSAGE: return "MPV_EVENT_LOG_MESSAGE"
case MPV_EVENT_GET_PROPERTY_REPLY: return "MPV_EVENT_GET_PROPERTY_REPLY"