Commit 53c8836b authored by Gildas Bazin's avatar Gildas Bazin

* ALL: changes to reflect the fact that libdvdcss now needs a colon after
   the DVD drive letter.
parent 22fad471
...@@ -14,8 +14,8 @@ To store a debug log of the current vlc session, you can use ...@@ -14,8 +14,8 @@ To store a debug log of the current vlc session, you can use
disable the GUI. You will end-up with a vlc.log file in your current directory. disable the GUI. You will end-up with a vlc.log file in your current directory.
If you want to play a DVD, run vlc and click on the Disc option in the If you want to play a DVD, run vlc and click on the Disc option in the
interface. You then have to type your drive letter in the 'Device name' interface. You then have to type your drive letter followed by a colon in
box (eg. 'D' if this is the letter for your dvdrom drive). the 'Device name' box (eg. 'D:' if this is the letter for your dvdrom drive).
Building VideoLAN Client from the source code Building VideoLAN Client from the source code
============================================= =============================================
......
...@@ -112,8 +112,8 @@ ...@@ -112,8 +112,8 @@
# define DVD_DEVICE "/dev/dvd" # define DVD_DEVICE "/dev/dvd"
# define VCD_DEVICE "/dev/cdrom" # define VCD_DEVICE "/dev/cdrom"
#else #else
# define DVD_DEVICE "D" # define DVD_DEVICE "D:"
# define VCD_DEVICE "D" # define VCD_DEVICE "D:"
#endif #endif
/***************************************************************************** /*****************************************************************************
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* and spawn threads. * and spawn threads.
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: main.c,v 1.195.2.10 2002/10/24 21:08:28 massiot Exp $ * $Id: main.c,v 1.195.2.11 2002/10/29 19:16:35 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -269,8 +269,14 @@ ...@@ -269,8 +269,14 @@
"(from 1 to n).") "(from 1 to n).")
#define DVD_DEV_TEXT N_("DVD device") #define DVD_DEV_TEXT N_("DVD device")
#ifdef WIN32
#define DVD_DEV_LONGTEXT N_( \
"This is the default DVD drive to use. Don't forget the colon after the " \
"drive letter (eg D:)")
#else
#define DVD_DEV_LONGTEXT N_( \ #define DVD_DEV_LONGTEXT N_( \
"This is the default DVD device to use.") "This is the default DVD device to use.")
#endif
#define VCD_DEV_TEXT N_("VCD device") #define VCD_DEV_TEXT N_("VCD device")
#define VCD_DEV_LONGTEXT N_( \ #define VCD_DEV_LONGTEXT N_( \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment