Skip to content

Commit

Permalink
HOPKINS: Fix the censorship flag (bug #6591)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Oct 27, 2014
1 parent 2a6a79b commit 7661b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/hopkins/files.cpp
Expand Up @@ -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");
}

/**
Expand Down

0 comments on commit 7661b8a

Please sign in to comment.