From 7661b8adfccde8190dc795c71033014f486cf800 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Mon, 27 Oct 2014 16:45:31 +0100 Subject: HOPKINS: Fix the censorship flag (bug #6591) --- engines/hopkins/files.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } /** -- cgit v1.2.3