From 6193c35a6ef00e52ebc8c1276c205d1efd868b0b Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 15 May 2010 19:40:18 +0300 Subject: [PATCH] drawable: fix typo, should fix assertion with two or more videos --- modules/video_output/drawable.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/video_output/drawable.c b/modules/video_output/drawable.c index 0abd8227d2..a68d9dbd65 100644 --- a/modules/video_output/drawable.c +++ b/modules/video_output/drawable.c @@ -69,8 +69,7 @@ static int Open (vlc_object_t *obj) /* Keep a list of busy drawables, so we don't overlap videos if there are * more than one video track in the stream. */ vlc_mutex_lock (&serializer); - /* TODO: per-type list of busy drawables */ - used = var_GetAddress (obj->p_libvlc, "drawables-in-use"); + used = var_GetAddress (obj->p_libvlc, "hwnd-in-use"); if (used != NULL) { while (used[n] != NULL) -- 2.39.2