aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/resource.cpp')
-rw-r--r--engines/sci/resource.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 108cfa5f63..fcff177262 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -210,14 +210,6 @@ ResourceSource *ResourceManager::addExternalMap(const Common::FSNode *mapFile, i
ResourceSource *ResourceManager::addSource(ResourceSource *newsrc) {
assert(newsrc);
- if (newsrc->getSourceType() == kSourceAudioVolume) {
- // TODO: Move this call into the AudioVolumeResourceSource constructor.
- // Need to verify if this is safe, though; in particular, whether this
- // method may be called before the new AudioVolumeResourceSource has been
- // added to the _sources lists.
- checkIfAudioVolumeIsCompressed(newsrc);
- }
-
_sources.push_back(newsrc);
return newsrc;
}