From bba8093f05afcd23588037ba35fd01c0e3eeb39a Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Fri, 5 Apr 2019 21:52:53 +0200 Subject: [PATCH] cc_item_tvpic.cpp: fix wrong parameter type parameter is type int --- src/gui/components/cc_item_tvpic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/cc_item_tvpic.cpp b/src/gui/components/cc_item_tvpic.cpp index 24f2ac57a..d6787861c 100644 --- a/src/gui/components/cc_item_tvpic.cpp +++ b/src/gui/components/cc_item_tvpic.cpp @@ -101,7 +101,7 @@ void CComponentsPIP::paint(bool do_save_bg) videoDecoder->Pig(pig_x, pig_y, pig_w, pig_h, screen_w, screen_h); } else{ //paint an alternate image if no tv mode available - CComponentsPicture pic = CComponentsPicture (pig_x, pig_y, pig_w, pig_h, pic_name, NULL, false, col_frame, col_frame); + CComponentsPicture pic = CComponentsPicture (pig_x, pig_y, pig_w, pig_h, pic_name, NULL, CC_SHADOW_OFF, col_frame, col_frame); pic.doPaintBg(false); int w, h; pic.getSize(&w, &h);