[Scummvm-git-logs] scummvm master -> b9fd88d0af7c9b458b75653e77fa87c5ac3a331a

dwatteau noreply at scummvm.org
Mon Mar 24 13:59:22 UTC 2025


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:
30536b1e02 AUDIO: JANITORIAL: Replace a broken URL with a Wayback Machine copy
b9fd88d0af JANITORIAL: SCUMM: Fix a misleading indentation


Commit: 30536b1e029760a2ac9c27a1c73dcffce384f9b0
    https://github.com/scummvm/scummvm/commit/30536b1e029760a2ac9c27a1c73dcffce384f9b0
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-03-24T14:42:19+01:00

Commit Message:
AUDIO: JANITORIAL: Replace a broken URL with a Wayback Machine copy

Changed paths:
    audio/decoders/aiff.cpp


diff --git a/audio/decoders/aiff.cpp b/audio/decoders/aiff.cpp
index 821e9d0ccc3..8086b820b6a 100644
--- a/audio/decoders/aiff.cpp
+++ b/audio/decoders/aiff.cpp
@@ -21,7 +21,7 @@
 
 /*
  * The code in this file is based on information found at
- * https://www.co-bw.com/Audio_AIFF.htm
+ * https://web.archive.org/web/20070409184854/http://www.borg.com/~jglatt/tech/aiff.htm
  *
  * Also partially based on libav's aiffdec.c
  */


Commit: b9fd88d0af7c9b458b75653e77fa87c5ac3a331a
    https://github.com/scummvm/scummvm/commit/b9fd88d0af7c9b458b75653e77fa87c5ac3a331a
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-03-24T14:44:29+01:00

Commit Message:
JANITORIAL: SCUMM: Fix a misleading indentation

(and a small comment while there)

Changed paths:
    engines/scumm/saveload.cpp


diff --git a/engines/scumm/saveload.cpp b/engines/scumm/saveload.cpp
index a27242947eb..3c19447fd8a 100644
--- a/engines/scumm/saveload.cpp
+++ b/engines/scumm/saveload.cpp
@@ -1492,9 +1492,9 @@ void ScummEngine::saveLoadWithSerializer(Common::Serializer &s) {
 				for (i = 0; i < 4096; ++i) {
 					*pos = SWAP_BYTES_16(*pos);
 					pos++;
+				}
 			}
 		}
-	}
 	} else {
 		s.syncBytes(_grabbedCursor, 8192, VER(20));
 	}
@@ -1905,7 +1905,7 @@ void ScummEngine::saveLoadWithSerializer(Common::Serializer &s) {
 	}
 
 	// Before version 109, palette cycling for v4 games was handled in a different
-	// way (which is, by retrofitting v5 code, which caused a class of bugs like #10854).
+	// way (which, by retrofitting v5 code, caused a class of bugs like #10854).
 	// The proper v4 code has now been implemented from disasm (specifically, only the
 	// LOOM CD and MI1 VGA executables have said code).
 	//




More information about the Scummvm-git-logs mailing list