[Scummvm-git-logs] scummvm master -> 29ae070865ab1f5a1fdfcf1a09f91a1ff6915cd0

aquadran noreply at scummvm.org
Tue Dec 7 23:32:40 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:
29ae070865 GROOVIE: Silence compiler warning


Commit: 29ae070865ab1f5a1fdfcf1a09f91a1ff6915cd0
    https://github.com/scummvm/scummvm/commit/29ae070865ab1f5a1fdfcf1a09f91a1ff6915cd0
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2021-12-08T00:32:34+01:00

Commit Message:
GROOVIE: Silence compiler warning

Changed paths:
    engines/groovie/video/roq.cpp


diff --git a/engines/groovie/video/roq.cpp b/engines/groovie/video/roq.cpp
index 1a04616b2a..373ae60186 100644
--- a/engines/groovie/video/roq.cpp
+++ b/engines/groovie/video/roq.cpp
@@ -359,7 +359,7 @@ bool ROQPlayer::playFrameInternal() {
 
 	if (_dirty) {
 		// TODO: Update the screen
-		void *src = (_alpha && 0) ? _bg->getPixels() : _screen->getPixels();
+		void *src = /*(_alpha && 0)*/ false ? _bg->getPixels() : _screen->getPixels();
 		_syst->copyRectToScreen(src, _screen->pitch, 0, (_syst->getHeight() - _screen->h) / 2, _screen->w, _screen->h);
 		_syst->updateScreen();
 




More information about the Scummvm-git-logs mailing list