1
0
Fork 0

Add basic support for audio cds only when dealing with images.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2982
This commit is contained in:
Peter Veenstra 2007-08-22 11:54:35 +00:00
parent d44511abce
commit 0382a13bd3
4 changed files with 56 additions and 8 deletions

View file

@ -169,6 +169,7 @@ public:
bool ReadSectors (PhysPt buffer, bool raw, unsigned long sector, unsigned long num);
bool LoadUnloadMedia (bool unload);
bool ReadSector (Bit8u *buffer, bool raw, unsigned long sector);
bool HasDataTrack (void);
static CDROM_Interface_Image* images[26];
@ -202,6 +203,7 @@ static struct imagePlayer {
static int refCount;
std::vector<Track> tracks;
typedef std::vector<Track>::iterator track_it;
std::string mcn;
Bit8u subUnit;
};