[Scummvm-cvs-logs] scummvm master -> 1ac6936a75acb6d5bb54d0934891e08e6fd57622

somaen einarjohan at somadalen.com
Sun Dec 2 08:36:10 CET 2012


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:
1ac6936a75 WINTERMUTE: Correct wrong logic in last commit.


Commit: 1ac6936a75acb6d5bb54d0934891e08e6fd57622
    https://github.com/scummvm/scummvm/commit/1ac6936a75acb6d5bb54d0934891e08e6fd57622
Author: Einar Johan Trøan Sømåen (einarjohants at gmail.com)
Date: 2012-12-01T23:34:55-08:00

Commit Message:
WINTERMUTE: Correct wrong logic in last commit.

Changed paths:
    engines/wintermute/base/gfx/osystem/base_render_osystem.cpp



diff --git a/engines/wintermute/base/gfx/osystem/base_render_osystem.cpp b/engines/wintermute/base/gfx/osystem/base_render_osystem.cpp
index c141440..55556e5 100644
--- a/engines/wintermute/base/gfx/osystem/base_render_osystem.cpp
+++ b/engines/wintermute/base/gfx/osystem/base_render_osystem.cpp
@@ -107,7 +107,7 @@ BaseRenderOSystem::BaseRenderOSystem(BaseGame *inGame) : BaseRenderer(inGame) {
 	setColorMod(255, 255, 255);
 	_dirtyRect = NULL;
 	_disableDirtyRects = true;
-	if (!ConfMan.hasKey("dirty_rects")) {
+	if (ConfMan.hasKey("dirty_rects")) {
 		_disableDirtyRects = !ConfMan.getBool("dirty_rects");
 	}
 }






More information about the Scummvm-git-logs mailing list