git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@54652 e17a0e51-4ae3-4d35-97c3-1a29b211df97

This commit is contained in:
SND\weimingzhi_cp 2010-07-15 09:32:03 +00:00
parent 4595ee36db
commit ae63a0a24a
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
July 15, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>
* plugins/dfcdrom/cdr-libcdio.c: Force MMC access mode on FreeBSD.
* plugins/dfcdrom/cdr-libcdio.c: Force CAM access mode on FreeBSD.
* plugins/dfcdrom/cdrcfg-0.1df/main.c: Use /dev/cd? instead on /dev/acd? on
FreeBSD.
* plugins/dfcdrom/cdr.h: Likewise.

View File

@ -79,7 +79,7 @@ int OpenCdHandle(const char *dev) {
}
#ifdef __FreeBSD__
cdHandle = cdio_open_am_cd(dev, "MMC");
cdHandle = cdio_open_am_cd(dev, "CAM");
#else
cdHandle = cdio_open_cd(dev);
#endif