mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 06:00:48 +00:00
Fixed compilation when the SCI32 code is disabled
svn-id: r49514
This commit is contained in:
parent
67690e89a3
commit
73010518b2
@ -620,9 +620,11 @@ void ResourceManager::scanNewSources() {
|
||||
switch (source->source_type) {
|
||||
case kSourceDirectory:
|
||||
readResourcePatches(source);
|
||||
#ifdef ENABLE_SCI32
|
||||
// We can't use getSciVersion() at this point, thus using _volVersion
|
||||
if (_volVersion >= kResVersionSci11) // SCI1.1+
|
||||
readResourcePatchesBase36(source);
|
||||
#endif
|
||||
readWaveAudioPatches();
|
||||
break;
|
||||
case kSourceExtMap:
|
||||
|
Loading…
x
Reference in New Issue
Block a user