win-capture: Fix bug with GDI monitor capture

With the new code that checks to see if the source is visible, I didn't
realize that I actually didn't set the source variable, so it would end
up never actually drawing.
master
jp9000 2015-01-05 14:15:34 -08:00
parent 6b8b5e5f64
commit cca34bfb4e
1 changed files with 1 additions and 1 deletions

View File

@ -132,10 +132,10 @@ static void *monitor_capture_create(obs_data_t *settings, obs_source_t *source)
capture = bzalloc(sizeof(struct monitor_capture)); capture = bzalloc(sizeof(struct monitor_capture));
capture->opaque_effect = opaque_effect; capture->opaque_effect = opaque_effect;
capture->source = source;
update_settings(capture, settings); update_settings(capture, settings);
UNUSED_PARAMETER(source);
return capture; return capture;
} }