summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-07 11:20:06 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-07 11:20:06 +0000
commit3b1b7689f2b68996913c2fd959de949d204e9933 (patch)
treec5c7488c1080b759766ac446727be69101e7dd27 /mplayer.c
parente300b2d8c7b6c3f406ef9f248cd6e775387617eb (diff)
downloadmpv-3b1b7689f2b68996913c2fd959de949d204e9933.tar.bz2
mpv-3b1b7689f2b68996913c2fd959de949d204e9933.tar.xz
Remove windows-specific hack that interfered with relative path
handling and should not be needed anymore git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18934 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index 7c92624cb6..d39d49c934 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2653,14 +2653,12 @@ int gui_no_filename=0;
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);
}