diff options
author | Lars Skovlund | 2010-12-02 13:29:49 +0000 |
---|---|---|
committer | Lars Skovlund | 2010-12-02 13:29:49 +0000 |
commit | 0ac28d1fbf94fddb6c5f38aca91dccdf5915a68c (patch) | |
tree | 8e50403942ec1cc3d26dcd83d6a1faf388d5f7b0 | |
parent | 44483e1e6ebca392305be322b3bba4a9e8f466ab (diff) | |
download | scummvm-rg350-0ac28d1fbf94fddb6c5f38aca91dccdf5915a68c.tar.gz scummvm-rg350-0ac28d1fbf94fddb6c5f38aca91dccdf5915a68c.tar.bz2 scummvm-rg350-0ac28d1fbf94fddb6c5f38aca91dccdf5915a68c.zip |
Disable error message regarding RESOURCE.AUD/.SFX for now.
svn-id: r54735
-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(); } |