mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
parent
4e0b50722b
commit
a8d77fabee
@ -957,7 +957,6 @@ public:
|
||||
char transText[200];
|
||||
|
||||
bool checkFixedDisk();
|
||||
int _cdrom;
|
||||
|
||||
#if defined(SCUMM_LITTLE_ENDIAN)
|
||||
uint32 fileReadDword() { return _fileHandle.readDwordLE(); }
|
||||
|
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user