HOPKINS: Fix the censorship flag (bug #6591)

This commit is contained in:
Strangerke 2014-10-27 16:45:31 +01:00
parent 2a6a79b167
commit 7661b8adfc

View File

@ -74,7 +74,7 @@ int FileManager::readStream(Common::ReadStream &stream, void *buf, size_t nbytes
* It's now using the config manager and a per-engine GUI option.
*/
void FileManager::initCensorship() {
_vm->_globals->_censorshipFl = ConfMan.getBool("enable_gore");
_vm->_globals->_censorshipFl = !ConfMan.getBool("enable_gore");
}
/**