From d1a142cefd3288c99827da8854085d673d90d82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20L?= Date: Tue, 22 Nov 2016 10:05:35 +0100 Subject: [PATCH] Fixed typo --- WSEvents.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WSEvents.cpp b/WSEvents.cpp index 7dac9cb9..25177282 100644 --- a/WSEvents.cpp +++ b/WSEvents.cpp @@ -61,8 +61,8 @@ void WSEvents::FrontendEventHandler(enum obs_frontend_event event, void *private else if (event == OBS_FRONTEND_EVENT_RECORDING_STARTED) { owner->OnRecordingStarted(); } - else if (event == OBS_FRONTEND_EVENT_RECORDING_STARTING) { - owner->OnRecordingStarting(); + else if (event == OBS_FRONTEND_EVENT_RECORDING_STOPPING) { + owner->OnRecordingStopping(); } else if (event == OBS_FRONTEND_EVENT_RECORDING_STOPPED) { owner->OnRecordingStopped(); @@ -212,4 +212,4 @@ void WSEvents::StreamStatus() { obs_data_release(data); obs_output_release(streamOutput); -} \ No newline at end of file +}