diff options
author | Strangerke | 2014-10-27 16:45:31 +0100 |
---|---|---|
committer | Strangerke | 2014-10-27 16:45:31 +0100 |
commit | 7661b8adfccde8190dc795c71033014f486cf800 (patch) | |
tree | 1db898fc1016ab5bc25cc4cd0cee1201e76b0c5f | |
parent | 2a6a79b1673e274420ca8c28f40f9855b1c6134f (diff) | |
download | scummvm-rg350-7661b8adfccde8190dc795c71033014f486cf800.tar.gz scummvm-rg350-7661b8adfccde8190dc795c71033014f486cf800.tar.bz2 scummvm-rg350-7661b8adfccde8190dc795c71033014f486cf800.zip |
HOPKINS: Fix the censorship flag (bug #6591)
-rw-r--r-- | engines/hopkins/files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/files.cpp b/engines/hopkins/files.cpp index 6620f2878c..3100ed6cdc 100644 --- a/engines/hopkins/files.cpp +++ b/engines/hopkins/files.cpp @@ -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"); } /** |