[Scummvm-git-logs] scummvm master -> 37007c3660b991e6fddfa5b7e9fde16dab1813a3

neuromancer noreply at scummvm.org
Fri Sep 11 18:48:20 UTC 2026


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

Summary:
37007c3660 FREESCAPE: Fix sign-comparision warnings in Dark Atari


Commit: 37007c3660b991e6fddfa5b7e9fde16dab1813a3
    https://github.com/scummvm/scummvm/commit/37007c3660b991e6fddfa5b7e9fde16dab1813a3
Author: uj404 (39839409+uj404 at users.noreply.github.com)
Date: 2026-09-11T20:48:15+02:00

Commit Message:
FREESCAPE: Fix sign-comparision warnings in Dark Atari

Changed paths:
    engines/freescape/games/dark/atari.cpp


diff --git a/engines/freescape/games/dark/atari.cpp b/engines/freescape/games/dark/atari.cpp
index fc3af8daadd..f3c784bdeeb 100644
--- a/engines/freescape/games/dark/atari.cpp
+++ b/engines/freescape/games/dark/atari.cpp
@@ -122,7 +122,7 @@ Common::SeekableReadStream *depackAtariExecutable(Common::SeekableReadStream *fi
 				}
 				count += kAtariPackLiteralBase[i];
 			}
-			if (count + 1 > dst || in.pos < count + 1)
+			if (count + 1u > dst || in.pos < count + 1u)
 				break;
 			for (uint16 i = 0; i <= count; i++)
 				out[--dst] = data[--in.pos];




More information about the Scummvm-git-logs mailing list