From 6a8328033825e4273571e594f22b6550ed9f0a05 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sat, 6 Apr 2019 13:42:03 +0200 Subject: [PATCH] cc_item_tvpic.cpp: fix wrong parameter type parameter is type int Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/a8d5c9c2d3065e53b38def4f9e5522ef28bbaab1 Author: Thilo Graf Date: 2019-04-06 (Sat, 06 Apr 2019) ------------------ This commit was generated by Migit --- 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 a63ad3b15..678689406 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);