SCI32: Remove incomplete SCI3 detection warning

Map format is the same as SCI2/2.1 and volume format is detected
correctly as SCI3.
This commit is contained in:
Colin Snover 2017-02-09 10:20:15 -06:00
parent 88f020c7d4
commit 8aed6759e4

View file

@ -903,12 +903,6 @@ void ResourceManager::init() {
_mapVersion = detectMapVersion();
_volVersion = detectVolVersion();
// TODO/FIXME: Remove once SCI3 resource detection is finished
if ((_mapVersion == kResVersionSci3 || _volVersion == kResVersionSci3) && (_mapVersion != _volVersion)) {
warning("FIXME: Incomplete SCI3 detection: setting map and volume version to SCI3");
_mapVersion = _volVersion = kResVersionSci3;
}
if ((_volVersion == kResVersionUnknown) && (_mapVersion != kResVersionUnknown)) {
warning("Volume version not detected, but map version has been detected. Setting volume version to map version");
_volVersion = _mapVersion;