[Scummvm-git-logs] scummvm master -> eef503877f6a0b3825daa9b2ffebf3b258d55430

dreammaster dreammaster at scummvm.org
Tue Aug 10 03:40:24 UTC 2021


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:
eef503877f GLK: COMPREHEND: Fix room outside cell in OO-Topos not rendering


Commit: eef503877f6a0b3825daa9b2ffebf3b258d55430
    https://github.com/scummvm/scummvm/commit/eef503877f6a0b3825daa9b2ffebf3b258d55430
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-08-09T20:39:40-07:00

Commit Message:
GLK: COMPREHEND: Fix room outside cell in OO-Topos not rendering

Changed paths:
    engines/glk/comprehend/pics.cpp


diff --git a/engines/glk/comprehend/pics.cpp b/engines/glk/comprehend/pics.cpp
index 3300c64077..1002a5e115 100644
--- a/engines/glk/comprehend/pics.cpp
+++ b/engines/glk/comprehend/pics.cpp
@@ -279,10 +279,13 @@ bool Pics::ImageFile::doImageOp(Pics::ImageContext *ctx) const {
 			ctx->_drawSurface->floodFill(a, b, ctx->_fillColor);
 		break;
 
+	#if 0
+	// FIXME: The reset case was causing room outside cell to be drawn all white
 	case OPCODE_RESET:
 		a = imageGetOperand(ctx);
 		doResetOp(ctx, a);
 		break;
+	#endif
 	}
 
 	//ctx->_drawSurface->dumpToScreen();




More information about the Scummvm-git-logs mailing list