diff -ur ScummVM-cvs20020927/scummvm/scumm/scumm.h ScummVM-cvs20020927+hack/scummvm/scumm/scumm.h
|
old
|
new
|
|
| 957 | 957 | char transText[200]; |
| 958 | 958 | |
| 959 | 959 | bool checkFixedDisk(); |
| 960 | | int _cdrom; |
| 961 | 960 | |
| 962 | 961 | #if defined(SCUMM_LITTLE_ENDIAN) |
| 963 | 962 | uint32 fileReadDword() { return _fileHandle.readDwordLE(); } |
diff -ur ScummVM-cvs20020927/scummvm/scumm/scummvm.cpp ScummVM-cvs20020927+hack/scummvm/scumm/scummvm.cpp
|
old
|
new
|
|
| 87 | 87 | _features = detector->_features; |
| 88 | 88 | _soundCardType = detector->_soundCardType; |
| 89 | 89 | _noSubtitles = detector->_noSubtitles; |
| 90 | | _cdrom = detector->_cdrom; |
| 91 | 90 | _defaultTalkDelay = detector->_talkSpeed; |
| 92 | 91 | _use_adlib = detector->_use_adlib; |
| 93 | 92 | |
| … |
… |
|
| 117 | 116 | /* Initialize backend */ |
| 118 | 117 | syst->init_size(_realWidth, _realHeight); |
| 119 | 118 | prop.cd_num = detector->_cdrom; |
| 120 | | syst->property(OSystem::PROP_OPEN_CD, &prop); |
| | 119 | if (prop.cd_num >= 0) |
| | 120 | syst->property(OSystem::PROP_OPEN_CD, &prop); |
| 121 | 121 | |
| 122 | 122 | /* Bind the mixer to the system => mixer will be invoked |
| 123 | 123 | * automatically when samples need to be generated */ |