]> git.sesse.net Git - vlc/commitdiff
* ALL: changes to reflect the fact that libdvdcss now needs a colon after
authorGildas Bazin <gbazin@videolan.org>
Tue, 29 Oct 2002 19:16:35 +0000 (19:16 +0000)
committerGildas Bazin <gbazin@videolan.org>
Tue, 29 Oct 2002 19:16:35 +0000 (19:16 +0000)
   the DVD drive letter.

INSTALL.win32
include/config.h
src/interface/main.c

index e26c03f1cf1a39a16b7d4a267a4d513ae95845b0..a0e592611076469a666aa55d7f44223ec26be6fe 100644 (file)
@@ -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.
 
 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'
-box (eg. 'D' if this is the letter for your dvdrom drive).
+interface. You then have to type your drive letter followed by a colon in
+the 'Device name' box (eg. 'D:' if this is the letter for your dvdrom drive).
 
 Building VideoLAN Client from the source code
 =============================================
index e7563aa8e40bc369cdb5697198ee8fb467859a85..551962888c5d22492b92096d9eac4674236284ff 100644 (file)
 #  define DVD_DEVICE "/dev/dvd"
 #  define VCD_DEVICE "/dev/cdrom"
 #else
-#  define DVD_DEVICE "D"
-#  define VCD_DEVICE "D"
+#  define DVD_DEVICE "D:"
+#  define VCD_DEVICE "D:"
 #endif
 
 /*****************************************************************************
index f868669230f6785b30cc7b71b932bd3c12e82803..4ccd524ee5b95a4096873d18e37708c02449ab48 100644 (file)
@@ -4,7 +4,7 @@
  * and spawn threads.
  *****************************************************************************
  * 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>
  *          Samuel Hocevar <sam@zoy.org>
     "(from 1 to n).")
 
 #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_( \
     "This is the default DVD device to use.")
+#endif
 
 #define VCD_DEV_TEXT N_("VCD device")
 #define VCD_DEV_LONGTEXT N_( \