svn-id: r5027
This commit is contained in:
Max Horn 2002-09-28 15:19:21 +00:00
parent 4e0b50722b
commit a8d77fabee
2 changed files with 2 additions and 3 deletions

View File

@ -957,7 +957,6 @@ public:
char transText[200];
bool checkFixedDisk();
int _cdrom;
#if defined(SCUMM_LITTLE_ENDIAN)
uint32 fileReadDword() { return _fileHandle.readDwordLE(); }

View File

@ -87,7 +87,6 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst)
_features = detector->_features;
_soundCardType = detector->_soundCardType;
_noSubtitles = detector->_noSubtitles;
_cdrom = detector->_cdrom;
_defaultTalkDelay = detector->_talkSpeed;
_use_adlib = detector->_use_adlib;
@ -117,7 +116,8 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst)
/* Initialize backend */
syst->init_size(_realWidth, _realHeight);
prop.cd_num = detector->_cdrom;
syst->property(OSystem::PROP_OPEN_CD, &prop);
if (prop.cd_num >= 0)
syst->property(OSystem::PROP_OPEN_CD, &prop);
/* Bind the mixer to the system => mixer will be invoked
* automatically when samples need to be generated */