diff options
-rw-r--r-- | engines/sci/resource.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index a19e7bc893..e02488ec34 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -873,8 +873,13 @@ void ResourceManager::init(bool initFromFallbackDetector) { if (!initFromFallbackDetector) { if (!addInternalSources()) - error("Somehow I can't seem to find the sound files I need (RESOURCE.AUD/RESOURCE.SFX), aborting"); - + { + // FIXME: This error message is not always correct. + // OTOH, it is nice to be able to detect missing files/sources + // So we should definitely fix addInternalSources so this error + // only pops up when necessary. Disabling for now. + // error("Somehow I can't seem to find the sound files I need (RESOURCE.AUD/RESOURCE.SFX), aborting"); + } scanNewSources(); } |