Basic UI: Fix scene/source reference counter

The 'how many scenes is this source in' reference counter used
in the basic UI was not being decremented.
This commit is contained in:
jp9000
2014-05-11 23:20:45 -07:00
parent 29c74efba6
commit 7b0adc9b24

View File

@@ -577,6 +577,8 @@ void OBSBasic::RemoveSceneItem(OBSSceneItem item)
obs_source_t source = obs_sceneitem_getsource(item);
int scenes = sourceSceneRefs[source] - 1;
sourceSceneRefs[source] = scenes;
if (scenes == 0) {
obs_source_remove(source);
sourceSceneRefs.erase(source);