summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-09 12:15:48 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-09 12:15:48 +0000
commited9296d845e754ddc4e91a87b41d7a8b878b6d95 (patch)
tree35cca7f63c69d485978ee9179d21c47eaf0cb4c4 /Gui
parentfbf7cf91621cee937d8a5e87e7afcd1e0fd7c9f1 (diff)
downloadmpv-ed9296d845e754ddc4e91a87b41d7a8b878b6d95.tar.bz2
mpv-ed9296d845e754ddc4e91a87b41d7a8b878b6d95.tar.xz
renames: DATADIR->MPLAYER_DATADIR, CONFDIR->MPLAYER_CONFDIR, LIBDIR->MPLAYER_LIBDIR
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10273 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gui/interface.c b/Gui/interface.c
index 2d8aa136e1..cd32ad638f 100644
--- a/Gui/interface.c
+++ b/Gui/interface.c
@@ -188,7 +188,7 @@ void guiInit( void )
wsXInit( (void *)mDisplay );
// --- load skin
skinDirInHome=get_path("Skin");
- skinMPlayerDir=DATADIR "/Skin";
+ skinMPlayerDir=MPLAYER_DATADIR "/Skin";
printf("SKIN dir 1: '%s'\n",skinDirInHome);
printf("SKIN dir 2: '%s'\n",skinMPlayerDir);
if ( !skinName ) skinName=strdup( "default" );
@@ -405,7 +405,7 @@ void guiLoadFont( void )
vo_font=read_font_desc( font_name,font_factor,0 );
if ( !vo_font )
{
- gfree( (void **)&font_name ); font_name=gstrdup( DATADIR"/font/font.desc" );
+ gfree( (void **)&font_name ); font_name=gstrdup(MPLAYER_DATADIR "/font/font.desc" );
vo_font=read_font_desc( font_name,font_factor,0 );
}
}