Răsfoiți Sursa

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.
jp9000 11 ani în urmă
părinte
comite
cca34bfb4e
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      plugins/win-capture/monitor-capture.c

+ 1 - 1
plugins/win-capture/monitor-capture.c

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