[Scummvm-git-logs] scummvm master -> 1495eec3c87470948e4c7378187ca84a457657ed

digitall 547637+digitall at users.noreply.github.com
Fri Oct 29 16:45:59 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:
1495eec3c8 ACCESS: Fix Duplicated Branch GCC Warnings


Commit: 1495eec3c87470948e4c7378187ca84a457657ed
    https://github.com/scummvm/scummvm/commit/1495eec3c87470948e4c7378187ca84a457657ed
Author: D G Turner (digitall at scummvm.org)
Date: 2021-10-29T17:45:17+01:00

Commit Message:
ACCESS: Fix Duplicated Branch GCC Warnings

Changed paths:
    engines/access/amazon/amazon_game.cpp


diff --git a/engines/access/amazon/amazon_game.cpp b/engines/access/amazon/amazon_game.cpp
index 065952e93b..c2cab06f61 100644
--- a/engines/access/amazon/amazon_game.cpp
+++ b/engines/access/amazon/amazon_game.cpp
@@ -356,9 +356,9 @@ void AmazonEngine::updateSummary(int chap) {
 
 	for (int i = celSubFile; i < 16; ++i) {
 		if (i > 7)
-			warning("TODO: DRAWOBJECT");
+			warning("TODO: DRAWOBJECT (i > 7)");
 		else
-			warning("TODO: DRAWOBJECT");
+			warning("TODO: DRAWOBJECT (i <= 7)");
 	}
 
 	delete _objectsTable[93];
@@ -368,9 +368,9 @@ void AmazonEngine::updateSummary(int chap) {
 		celSubFile = i;
 		loadCells(summaryCells);
 		if (i > 8)
-			warning("TODO: DRAWOBJECT");
+			warning("TODO: DRAWOBJECT (i > 8)");
 		else
-			warning("TODO: DRAWOBJECT");
+			warning("TODO: DRAWOBJECT (i <= 8)");
 
 		delete _objectsTable[93];
 		_objectsTable[93] = nullptr;




More information about the Scummvm-git-logs mailing list