made the menu display the drive path in a more common way instead of the NT device path

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2416 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
daco65 2009-02-24 17:06:27 +00:00
parent 53060dff38
commit 2d6a977dc5
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
With minor adjustments */ With minor adjustments */
#include "CDUtils.h" #include "CDUtils.h"
#include "common.h"
/*! /*!
Follow symlinks until we have the real device file Follow symlinks until we have the real device file
@ -103,7 +104,7 @@ const char *is_cdrom_win32(const char c_drive_letter) {
case DRIVE_CDROM: { case DRIVE_CDROM: {
char sz_win32_drive_full[] = "\\\\.\\X:"; char sz_win32_drive_full[] = "\\\\.\\X:";
sz_win32_drive_full[4] = c_drive_letter; sz_win32_drive_full[4] = c_drive_letter;
return strdup(sz_win32_drive_full); return strdup(&sz_win32_drive_full[4]);
} }
default: default:
//cdio_debug("Drive %c is not a CD-ROM", c_drive_letter); //cdio_debug("Drive %c is not a CD-ROM", c_drive_letter);