[vlc-commits] epg: fix path to VLC icon
Rémi Denis-Courmont
git at videolan.org
Tue Mar 6 20:17:34 CET 2018
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Mar 5 23:13:20 2018 +0200| [d9086895e32e22af0aadc8f2af8e745a462a6ab1] | committer: Rémi Denis-Courmont
epg: fix path to VLC icon
As per ebbb05512f9c16812db5808fcba9a4678973d21f.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d9086895e32e22af0aadc8f2af8e745a462a6ab1
---
src/video_output/video_epg.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/video_output/video_epg.c b/src/video_output/video_epg.c
index 4547ed030d..834367d007 100644
--- a/src/video_output/video_epg.c
+++ b/src/video_output/video_epg.c
@@ -77,8 +77,8 @@ struct subpicture_updater_sys_t
static char * GetDefaultArtUri( void )
{
char *psz_uri = NULL;
- char *psz_path = config_GetSysPath(VLC_PKG_DATA_DIR,
- "icons/128x128/"PACKAGE_NAME".png");
+ char *psz_path = config_GetSysPath(VLC_SYSDATA_DIR, "icons/hicolor/"
+ "128x128/"PACKAGE_NAME".png");
if( psz_path != NULL )
{
psz_uri = vlc_path2uri( psz_path, NULL );
More information about the vlc-commits
mailing list