From a38cd03e065efbc863bc897012900938aa70beb3 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Mon, 12 Oct 2020 16:58:01 -0700 Subject: [PATCH] UI/obs-frontend-api: Fix replay buffer save event ABI break New events must go at the bottom of the list, not at the top, otherwise ABI will be broken. --- UI/obs-frontend-api/obs-frontend-api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/obs-frontend-api/obs-frontend-api.h b/UI/obs-frontend-api/obs-frontend-api.h index 0e28bf075..bee32ee4c 100644 --- a/UI/obs-frontend-api/obs-frontend-api.h +++ b/UI/obs-frontend-api/obs-frontend-api.h @@ -37,7 +37,6 @@ enum obs_frontend_event { OBS_FRONTEND_EVENT_REPLAY_BUFFER_STARTED, OBS_FRONTEND_EVENT_REPLAY_BUFFER_STOPPING, OBS_FRONTEND_EVENT_REPLAY_BUFFER_STOPPED, - OBS_FRONTEND_EVENT_REPLAY_BUFFER_SAVED, OBS_FRONTEND_EVENT_STUDIO_MODE_ENABLED, OBS_FRONTEND_EVENT_STUDIO_MODE_DISABLED, @@ -50,6 +49,7 @@ enum obs_frontend_event { OBS_FRONTEND_EVENT_RECORDING_UNPAUSED, OBS_FRONTEND_EVENT_TRANSITION_DURATION_CHANGED, + OBS_FRONTEND_EVENT_REPLAY_BUFFER_SAVED, }; /* ------------------------------------------------------------------------- */ -- GitLab