[Scummvm-git-logs] scummvm master -> 32a0e69045e952635c1525fc6929817c4d81c397

whiterandrek whiterandrek at gmail.com
Wed Jul 18 21:11:38 CEST 2018


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:
32a0e69045 PINK: fixed redrawing screen when menu disappears


Commit: 32a0e69045e952635c1525fc6929817c4d81c397
    https://github.com/scummvm/scummvm/commit/32a0e69045e952635c1525fc6929817c4d81c397
Author: Andrei Prykhodko (whiterandrek at gmail.com)
Date: 2018-07-18T22:11:21+03:00

Commit Message:
PINK: fixed redrawing screen when menu disappears

Changed paths:
    engines/pink/pink.cpp


diff --git a/engines/pink/pink.cpp b/engines/pink/pink.cpp
index 25c8f88..71623c5 100644
--- a/engines/pink/pink.cpp
+++ b/engines/pink/pink.cpp
@@ -161,6 +161,9 @@ Common::Error Pink::PinkEngine::run() {
 void PinkEngine::pauseEngine(void *engine, bool pause) {
 	PinkEngine *vm = (PinkEngine*)engine;
 	vm->pauseEngineIntern(pause);
+	if (!pause) {
+		vm->_director->addDirtyRect(Common::Rect(0, 0, 640, 480));
+	}
 }
 
 void PinkEngine::load(Archive &archive) {





More information about the Scummvm-git-logs mailing list