[Scummvm-cvs-logs] scummvm master -> 7661b8adfccde8190dc795c71033014f486cf800

Strangerke Strangerke at scummvm.org
Mon Oct 27 16:47:54 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7661b8adfc HOPKINS: Fix the censorship flag (bug #6591)


Commit: 7661b8adfccde8190dc795c71033014f486cf800
    https://github.com/scummvm/scummvm/commit/7661b8adfccde8190dc795c71033014f486cf800
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-10-27T16:45:31+01:00

Commit Message:
HOPKINS: Fix the censorship flag (bug #6591)

Changed paths:
    engines/hopkins/files.cpp



diff --git a/engines/hopkins/files.cpp b/engines/hopkins/files.cpp
index 6620f28..3100ed6 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");
 }
 
 /**






More information about the Scummvm-git-logs mailing list