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

alxpnv a04198622 at gmail.com
Wed May 26 11:21:41 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:
c8fb754319 ASYLUM: fix screen not going completely black when counting in H&S game


Commit: c8fb754319c7f447f59519c2b99342691371d726
    https://github.com/scummvm/scummvm/commit/c8fb754319c7f447f59519c2b99342691371d726
Author: alxpnv (alxpnv22 at yahoo.com)
Date: 2021-05-26T14:23:50+03:00

Commit Message:
ASYLUM: fix screen not going completely black when counting in H&S game

Changed paths:
    engines/asylum/views/scene.cpp


diff --git a/engines/asylum/views/scene.cpp b/engines/asylum/views/scene.cpp
index 55de298b3e..72d356afd3 100644
--- a/engines/asylum/views/scene.cpp
+++ b/engines/asylum/views/scene.cpp
@@ -2395,8 +2395,8 @@ bool Scene::drawScene() {
 
 	_vm->screen()->clearGraphicsInQueue();
 
-	if (getSharedData()->getFlag(kFlagRedraw)) {
-		_vm->screen()->clear();
+	if (getSharedData()->getFlag(kFlagSkipDrawScene)) {
+		_vm->screen()->fillRect(0, 0, 640, 480, 0);
 		return false;
 	}
 




More information about the Scummvm-git-logs mailing list