[Scummvm-git-logs] scummvm-tools master -> 4db00cb7b72618c59714763ab9c9651388e32fbd

mgerhardy noreply at scummvm.org
Mon Aug 31 20:39:56 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://api.github.com/repos/scummvm/scummvm-tools .

Summary:
4db00cb7b7 MACS2: fixed compilation on macosx


Commit: 4db00cb7b72618c59714763ab9c9651388e32fbd
    https://github.com/scummvm/scummvm-tools/commit/4db00cb7b72618c59714763ab9c9651388e32fbd
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2026-08-31T22:39:50+02:00

Commit Message:
MACS2: fixed compilation on macosx

Changed paths:
    engines/macs2/extract_macs2.cpp


diff --git a/engines/macs2/extract_macs2.cpp b/engines/macs2/extract_macs2.cpp
index cb74df87..decdf6a5 100644
--- a/engines/macs2/extract_macs2.cpp
+++ b/engines/macs2/extract_macs2.cpp
@@ -933,7 +933,7 @@ static void extractPortraits(const char *outDir) {
 			if ((j == 0x11 || j == 0x12) && dataSize > 0) {
 				std::vector<uint8_t> blob(dataSize);
 				fread(blob.data(), 1, dataSize, resFile);
-				portraitBlobs[j - 0x11] = std::move(blob);
+				portraitBlobs[j - 0x11] = blob;
 			} else {
 				fseek(resFile, dataSize, SEEK_CUR);
 			}




More information about the Scummvm-git-logs mailing list