diff options
Diffstat (limited to 'engines/sci/scicore/resource.cpp')
| -rw-r--r-- | engines/sci/scicore/resource.cpp | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/sci/scicore/resource.cpp b/engines/sci/scicore/resource.cpp index 14a430c383..392ea3b560 100644 --- a/engines/sci/scicore/resource.cpp +++ b/engines/sci/scicore/resource.cpp @@ -901,10 +901,7 @@ void ResourceManager::readResourcePatches(ResourceSource *source) {  			// SCI1 scheme  			if (isdigit(name[0])) {  				number = atoi(name.c_str()); -				// vocab.999/999.voc is notoriously unreliable in SCI1 games, and should not be used -				// Also check vocabulary_get_knames1() -				if (number != VOCAB_RESOURCE_KNAMES) -					bAdd = true; +				bAdd = true;  			} else {  				// SCI0 scheme  				int resname_len = strlen(szResType);  | 
