# HG changeset patch # User reimar # Date 1152271206 0 # Node ID 13fd66346cd5619eaeda3fa38d1154417edd4f4f # Parent 586777f09b1bdd9090b66b20ecec540db2350d79 Remove windows-specific hack that interfered with relative path handling and should not be needed anymore diff -r 586777f09b1b -r 13fd66346cd5 mplayer.c --- 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); }