Mercurial > mplayer.hg
changeset 18929:13fd66346cd5
Remove windows-specific hack that interfered with relative path
handling and should not be needed anymore
author | reimar |
---|---|
date | Fri, 07 Jul 2006 11:20:06 +0000 |
parents | 586777f09b1b |
children | d7ab6268e3ea |
files | mplayer.c |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Fri Jul 07 11:17:27 2006 +0000 +++ b/mplayer.c Fri Jul 07 11:20:06 2006 +0000 @@ -2653,14 +2653,12 @@ play_tree_iter_free(playtree_iter); playtree_iter=NULL; -#ifndef WIN32 //Allow playing movies from network drives. eg. \\Desktop\c\somemovie.avi if (getcwd(cwd, PATH_MAX) != (char *)NULL) { strcat(cwd, "/"); // Prefix relative paths with current working directory play_tree_add_bpf(playtree, cwd); } -#endif /* WIN32 */ // Import initital playtree into GUI. import_initial_playtree_into_gui(playtree, mconfig, enqueue); }