aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins
diff options
context:
space:
mode:
authorStrangerke2014-10-27 16:45:31 +0100
committerStrangerke2014-10-27 16:45:31 +0100
commit7661b8adfccde8190dc795c71033014f486cf800 (patch)
tree1db898fc1016ab5bc25cc4cd0cee1201e76b0c5f /engines/hopkins
parent2a6a79b1673e274420ca8c28f40f9855b1c6134f (diff)
downloadscummvm-rg350-7661b8adfccde8190dc795c71033014f486cf800.tar.gz
scummvm-rg350-7661b8adfccde8190dc795c71033014f486cf800.tar.bz2
scummvm-rg350-7661b8adfccde8190dc795c71033014f486cf800.zip
HOPKINS: Fix the censorship flag (bug #6591)
Diffstat (limited to 'engines/hopkins')
-rw-r--r--engines/hopkins/files.cpp2
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");
}
/**