Fixed typo

This commit is contained in:
Stéphane L 2016-11-22 10:05:35 +01:00 committed by GitHub
parent 36cf2a4126
commit d1a142cefd

View File

@ -61,8 +61,8 @@ void WSEvents::FrontendEventHandler(enum obs_frontend_event event, void *private
else if (event == OBS_FRONTEND_EVENT_RECORDING_STARTED) { else if (event == OBS_FRONTEND_EVENT_RECORDING_STARTED) {
owner->OnRecordingStarted(); owner->OnRecordingStarted();
} }
else if (event == OBS_FRONTEND_EVENT_RECORDING_STARTING) { else if (event == OBS_FRONTEND_EVENT_RECORDING_STOPPING) {
owner->OnRecordingStarting(); owner->OnRecordingStopping();
} }
else if (event == OBS_FRONTEND_EVENT_RECORDING_STOPPED) { else if (event == OBS_FRONTEND_EVENT_RECORDING_STOPPED) {
owner->OnRecordingStopped(); owner->OnRecordingStopped();
@ -212,4 +212,4 @@ void WSEvents::StreamStatus() {
obs_data_release(data); obs_data_release(data);
obs_output_release(streamOutput); obs_output_release(streamOutput);
} }