[Scummvm-git-logs] scummvm master -> 7cc4a58670bd20d9cba36f87c4bfe5e882cf6e31

digitall noreply at scummvm.org
Mon Sep 5 23:15:30 UTC 2022


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
3a419a580a MACVENTURE: Remove Another Unused Variable Causing GCC Compiler Warning
7cc4a58670 MTROPOLIS: Fix Enumerated Value Not In Switch GCC Compiler Warnings


Commit: 3a419a580a0c67cc85d6ca94c31ec5323e0eaf97
    https://github.com/scummvm/scummvm/commit/3a419a580a0c67cc85d6ca94c31ec5323e0eaf97
Author: D G Turner (digitall at scummvm.org)
Date: 2022-09-06T00:12:31+01:00

Commit Message:
MACVENTURE: Remove Another Unused Variable Causing GCC Compiler Warning

Changed paths:
    engines/macventure/gui.cpp


diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp
index c8a3c0a1ded..abccc530efb 100644
--- a/engines/macventure/gui.cpp
+++ b/engines/macventure/gui.cpp
@@ -465,7 +465,6 @@ bool Gui::loadMenus() {
 	}
 
 	Common::MacResIDArray resArray;
-	Common::SeekableReadStream *res;
 	Common::MacResIDArray::const_iterator iter;
 
 	if ((resArray = _resourceManager->getResIDArray(MKTAG('M', 'E', 'N', 'U'))).size() == 0)


Commit: 7cc4a58670bd20d9cba36f87c4bfe5e882cf6e31
    https://github.com/scummvm/scummvm/commit/7cc4a58670bd20d9cba36f87c4bfe5e882cf6e31
Author: D G Turner (digitall at scummvm.org)
Date: 2022-09-06T00:13:02+01:00

Commit Message:
MTROPOLIS: Fix Enumerated Value Not In Switch GCC Compiler Warnings

Changed paths:
    engines/mtropolis/boot.cpp


diff --git a/engines/mtropolis/boot.cpp b/engines/mtropolis/boot.cpp
index b4a90b1335d..db6d667ce84 100644
--- a/engines/mtropolis/boot.cpp
+++ b/engines/mtropolis/boot.cpp
@@ -1015,6 +1015,8 @@ Common::SharedPtr<ProjectDescription> bootProject(const MTropolisGameDescription
 						segmentFiles.push_back(nullptr);
 					segmentFiles[segmentIndex] = &macFile;
 				} break;
+			case Boot::MTFT_VIDEO:
+				break;
 			case Boot::MTFT_SPECIAL:
 				break;
 			case Boot::MTFT_AUTO:
@@ -1191,6 +1193,8 @@ Common::SharedPtr<ProjectDescription> bootProject(const MTropolisGameDescription
 					segmentFiles.push_back(nullptr);
 				segmentFiles[segmentIndex] = &macFile;
 			} break;
+			case Boot::MTFT_VIDEO:
+				break;
 			case Boot::MTFT_SPECIAL:
 				break;
 			case Boot::MTFT_AUTO:




More information about the Scummvm-git-logs mailing list